Source: Defining a Dimension
Category: Information Technology
Various IT related article
Enesys RS Data Extension – KB and Samples – reporting_on_survey
ASP Net Core / Docker
Yo / Asp Net Application with Athentificaiton
Create Models Directory
Create Confernce / Session Class / MeetingDbContext class
Since there are two DbContext, notice following command for the proper context
dotnet ef migrations add Initial –context MeetingDbContext
dotnet ef database update –context MeetingDbContext
sudo apt install sqlite3
goto bin\Debug\netcoreapp1.0
sqlite3 xxxx.db
.tables ( to find the talbes )
Ctl +d to exit from sqlite
Afer build webapp, and following is careating docker.
Make Sure docker is runnig using bellowing command:
sudo service docker status
sudo docker build -t networld/dockeraspnet
during the build case, I deleted 2 ef database update for successful building.
In case you need to delete unnecessary docker image;
docker rm -f imageid
You can get imageid using below command
docker images
To run docker image
docker run -t -p 81:5000 networld/dockeraspnet ( 81 is local port 5000 docker image running port )
To stop running docker process.
docker ps ( to get name ), and then
docker stop name ( such as focused-joliot )
Q: How to rename docker image name once you build.
Now I create private Repo on the Docker Hub.
for example: frankfax\networld.
Build your image same as the above.
sudo docker build -t frnakfax\networld
docker login ( using hub account )
docker push frankfax/networld
docker pull frankfax/networld
sql – SSRS calculate percentage of column based on row total – Stack Overflow
Calculate percentage of total columns based on total column in SSRS Matrix – Stack Overflow
sql – Reporting Services Chart – Custom Axis Label – Stack Overflow
Drill Down Chart Report in SSRS
Drill Down Chart Report in SSRS,Drill Down Chart Report,SSRS,Visual Studio 2010,Visual studio 2008,Sql Server 2012,Sql Server 2008,SSRS,Reporting Services
Source: Drill Down Chart Report in SSRS