Viewing 15 posts - 1 through 15 (of 52 total)
I had to do something a little different,band that was to identify packages whose mail relay server name needed to be updated.
I ended up querying enabled jobs that call a...
November 28, 2020 at 3:19 pm
How big are the databases and how long will the copy take?
Full backup must be WITH INIT option, then you have the option of using a differential.
Is your server set...
November 28, 2020 at 1:06 pm
Ola Hallegren published database backup scripts
Create util database, have script as stored procedure
Use Windows scheduled task to run this
November 14, 2020 at 1:19 pm
Are you calling Powershell from the SSIS package?
What about outputting the results into a sql table and populate variables with values from there?
November 7, 2020 at 6:44 pm
You have already installed and configured SharePoint, you cannot change the connection string. You will have to change the alias to point to the listener
October 26, 2020 at 4:10 pm
Sounds like
Update tba
Set fta1 = 'ftbid' + b.col + CONVERT(VARCHAR(2), b.orderdate, 103)
Join tbb b on tba.fid = b.fid
October 26, 2020 at 1:54 pm
You deleted,/truncated a large amount of data, your database physical size does not autoshrink. Many suggest pre growing your data files. If you are certain that your database will not...
October 25, 2020 at 8:27 am
gMSA accounts are known to give errors when it comes to permissions on a network share. Do you think you could create a proxy account and use that instead
October 22, 2020 at 4:13 pm
You need change control and your application needs a version table. Your application needs an about screen to show this info
The script should include the code to update the version...
October 22, 2020 at 8:58 am
What else is going on?
Xp_loginfo should not be causing such an issue.
Any blocking? Sp_who2, sp_who2 'active', dbcc inputbuffer(spid)
October 22, 2020 at 8:48 am
Sounds like a dangerous thing to do in production
Is this part of migration, a one time task or will you want your monster script to run regularly?
October 22, 2020 at 8:40 am
Sounds like your application will need 2 connection strings. One for general application and another for read only. I would create 2 application logins just to keep the separation more...
October 22, 2020 at 8:35 am
This is a tough one. Haven't heard or come across this.
What if you stop and start sql server agent services? Sounds like you have nothing to loose
Can you fail over...
October 22, 2020 at 8:29 am
Is the backup broken into several files? The backup database command has options
, Buffer count =2200, blocksize = 65536, maxtransfersize = 2097152
If that fails, use
, Buffer size =1200, blocksize =...
October 21, 2020 at 4:13 pm
If your database is in standby mode, you can do a snapshot, but you cannot set a standby database online if there is a snapshot on it.
You can do a...
October 21, 2020 at 4:03 pm
Viewing 15 posts - 1 through 15 (of 52 total)