Contents tagged with create
-
How to create a new user in a SQL Azure database
In SQL Server Management Studio:
1) select the database from the database dropdown list
2) run the following script:
CREATE USER [myusername] WITH PASSWORD = 'mypassword';
ALTER ROLE [db_owner] … more
-
Create a New Azure Active Directory Tennant
1) go to portal.azure.com2) select Azure Active Directory3) select Overview4) select Create a Directory more
-
Power BI Create Tables Manually
https://www.sqlbi.com/articles/create-static-tables-in-dax-using-the-datatable-function/
https://community.powerbi.com/t5/Desktop/Adding-a-row-manually-to-manually-created-table/td-p/58154
https:// … more
-
Create Table DDL via TSQL
https://www.sqlservercentral.com/articles/create-table-ddl-via-tsql-1
-
Create a Certificate with Powershell
https://support.jetglobal.com/hc/en-us/articles/235636308-How-To-Create-a-SHA-256-Self-Signed-Certificate
https://docs.microsoft.com/en-us/powershell/module/pkiclient/new-selfsignedcertificate?view= … more