Viewing 3 posts - 1 through 3 (of 3 total)
This message always apears afer restart of DB server and also forced stop of SQL service.
April 4, 2024 at 3:47 pm
All logins and rolas together:
SELECT
Case when ROW_NUMBER() OVER(PARTITION BY sp.name ORDER BY r.name DESC) = 1
then
'
IF(SUSER_ID('+QUOTENAME(SP.name,'''')+') IS NULL)
BEGIN
CREATE LOGIN '+QUOTENAME(SP.name)+
' WITH...
March 29, 2018 at 10:47 am
This is fast sql script that will make a sql script (create linked server command) for linked servers (made by me), but without password:
select
'
USE [master]
GO
March 29, 2018 at 9:59 am
Viewing 3 posts - 1 through 3 (of 3 total)