Tag: sql server
-
SQL Server Scripts to setup ASP.NET Identity Tables
If you are not using database first approach you probably need these scripts to setup the ASP.NET Identity tables in your database.
-
How to know whether SQL Server is 32-bit or 64-bit
Simple way to know whether SQL Server is 32-bit or 64-bit is by executing the following script: select SERVERPROPERTY(‘edition’) It will then return the Edition of SQL Server installed. If it’s 32-bit it will just return the Edition name. If it’s 64-bit then it will have (64-bit) added after the Edition name.