Viewing 15 posts - 31 through 45 (of 348 total)
sqlserver service account is running under LocalSystem Account on the destination server
May 1, 2024 at 4:22 pm
On destination server XYZ SQLAgent runs under LocalSystem account.
XYZ$ has been given read/write access to the network share - \\ABCD\E$\BackupsTest\
April 26, 2024 at 8:25 pm
We have several sql backup files on a network share and are trying to restore them onto a sqlserver
April 25, 2024 at 1:28 pm
My first select :
A E:\1.mdf D
A_1 E:\2_1.ndf D
A_log F:\3.ldf L
My second select:
SrvA Db1
This is what the result...
March 12, 2024 at 9:33 am
I created the function Restore-DbaDatabase , loaded it and tried executing. Was not aware that the DBAtools module had to be installed.
March 8, 2024 at 3:19 pm
Restore-DbaDatabase -SqlInstance server1\instance1 -Path Z:\Backup -DestinationDataDirectory Z:\Restore -DestinationLogDirectory Z:\Restore
Restore-DbaDatabase : The term 'Restore-DbaDatabase' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
spelling...
March 8, 2024 at 1:14 pm
DECLARE @backup_path nvarchar(300);
DECLARE @restore_path nvarchar(300);
DECLARE @cmd nvarchar(1000);
DECLARE @file_list TABLE (backup_file nvarchar(400));
DECLARE @backup_file nvarchar(300);
DECLARE @Table TABLE (LogicalName nvarchar(128),[PhysicalName] nvarchar(128), [Type] varchar, [FileGroupName] nvarchar(128), [Size] nvarchar(128),
[MaxSize] nvarchar(128), [FileId]nvarchar(128), [CreateLSN]nvarchar(128),...
March 4, 2024 at 3:42 pm
Have in working and Thank you Jeff !
And happy retirement !! 🙂
March 4, 2024 at 9:39 am
Hello Grant/All,
I have a some databases I would like to dbcc checkdb and sent an email alert if any errors occurs in any of the databases.
I am running DBCC as...
March 3, 2024 at 4:13 pm
As part of a SQL jobs which dbcc's all user dbs and if any the dbs report an error then I need an email stating the same...that this db has...
February 27, 2024 at 5:46 pm
Trying to list down the 10 largest files across all drives from all servers.
February 26, 2024 at 10:54 am
Hello Phil, Did as advised. Not working.same error
February 13, 2024 at 5:25 pm
Thanks for the response..
how do we check what you recommended ?
https://www.sqlservercentral.com/blogs/quick-tip-wmi-alerts-and-sql-server-agent-permissions..
Let me check and get back...
But the query captures data from 100+servers...so how does this work...check on all servers or...
February 13, 2024 at 2:51 pm
Viewing 15 posts - 31 through 45 (of 348 total)