Wednesday, March 25, 2020
Create a New User in SQL server and Grant only a Given DB Access only
-- 1.
create LOGIN sa_uat2 WITH PASSWORD='abc123', CHECK_POLICY = OFF;
--2.
USE master;
GO
DENY VIEW ANY DATABASE TO sa_uat2;
-- 3.
USE master;
GO
ALTER AUTHORIZATION ON DATABASE::DB_Name_You_need TO sa_uat2;
GO
Subscribe to:
Comments (Atom)
Postgress - Read a XML file from a postgress table XML column
SELECT xmltable.* FROM xmldata, XMLTABLE('//ROWS/ROW' PASSING data COLUMNS id int PATH ...
-
if more than 65535 files in your temp folder, this error can occurs, To resolve this, remove all temporary files in C:/Windows/Temp ....
-
select upper(substr(CTY_CITY,1,1))|| substr(CTY_CITY,2,length(CTY_CITY)-1) as Ax from AGM_M_COUNTRY_CITY; update AGM_M_COUNTRY_CITY set ...
-
Common text box validation function for all the text boxes within the same form. Using Sender parameter to handle. private void tex...