Viewing 6 posts - 1 through 6 (of 6 total)
This was removed by the editor as SPAM
October 16, 2024 at 7:23 pm
This was removed by the editor as SPAM
October 16, 2024 at 6:53 pm
--Permission Capture
SET NOCOUNT ON
SELECT
[-- SQL Statements --]--,[ScriptOrder]
FROM
(
SELECT
'-- [ DB CONTEXT ] --' + Char(13) AS [-- SQL Statements --] ,10 as [ScriptOrder]
UNION
SELECT
'USE' + SPACE(1) + QUOTENAME(DB_Name()) + char(13), 20 [ScriptOrder]
--'USE'...
October 16, 2024 at 6:53 pm
To work around this issue, create a transaction log backup on the primary replica or Primary Database, restore the log backup on the secondary replica with no recovery, and then...
March 3, 2020 at 2:42 am
I added the SQL Service Account into local admin group on windows.
before it gave me permission error like this:-
FCB::Open failed: Could not open file D:\tempdb.mdf for file...
September 19, 2017 at 10:00 am
//** Use this query and you will all set**//txtPost_CommentEmoticon(':-)');
USE Master
GO
ALTER LOGIN SQL_Account WITH PASSWORD = ‘currentpassword(SamePassword)’
GO
ALTER LOGIN SQL_Account WITH
CHECK_POLICY = OFF,
...
January 15, 2015 at 9:49 am
Viewing 6 posts - 1 through 6 (of 6 total)