⇤ ← Revision 1 as of 2018-01-25 20:01:15
Size: 286
Comment:
|
Size: 393
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 8: | Line 8: |
Above is the T-SQL needed to add a database. We'll create the scripts based on the usernames in Excel. |
Creating Student Databases Script in SQL
CREATE DATABASE DELETEME; GO USE DELETEME; CREATE LOGIN DELETEME WITH PASSWORD='HelloJunkBonds123'; CREATE USER DELETEME FOR LOGIN DELETEME WITH DEFAULT_SCHEMA=[db_owner]; EXEC sp_addrolemember 'db_owner', 'DELETEME';
Above is the T-SQL needed to add a database. We'll create the scripts based on the usernames in Excel.