Viewing 15 posts - 16 through 30 (of 184 total)
Thanks just want to make sure what if index is created in a file group can we restore that only?
October 28, 2019 at 7:54 pm
DECLARE @FileSpace...
March 28, 2019 at 1:01 pm
1) you can use...
March 28, 2019 at 12:20 pm
My requirement to keep track of how many logins we have in total in entire server, so I want to get any distinct Login name with othew column.
March 1, 2019 at 10:38 am
basically I am trying to get only one Login for each person not matter how many host or CMD he has connected
March 1, 2019 at 10:30 am
I am not getting Distinct Loginame with the solution you provided.
March 1, 2019 at 10:01 am
DECLARE @command AS varchar(2000) = 'PRINT ''--=========================================================================='';
PRINT ''USE...
March 14, 2018 at 1:28 pm
DECLARE @command AS varchar(2000) = 'PRINT ''--=========================================================================='';
PRINT ''USE...
March 14, 2018 at 1:00 pm
This is the code is working for Single Database, I want this for Multiple DB
DECLARE
@note VARCHAR(2048)
,@id INT
,@command varchar(2000)
DECLARE...
March 14, 2018 at 11:49 am
DECLARE
@note VARCHAR(2000)
,@id INT
,@command varchar (2000)
DECLARE C_sql CURSOR FOR
SELECT '' AS [-- Notes --],
2 AS [-- print output --]
UNION
SELECT '--...
March 14, 2018 at 11:49 am
Viewing 15 posts - 16 through 30 (of 184 total)