Viewing 15 posts - 706 through 720 (of 1,999 total)
1st step - change the schedule to 7.30pm - then if it still fails we can rule out the time issue
if it still fails we can look at other options
November 5, 2019 at 11:51 am
my understanding is that it is number of processors -1 up to a maximum of 8 for the number of tempdb files
initial size , you are going to have to...
November 5, 2019 at 11:39 am
November 5, 2019 at 11:33 am
the query store is a useful tool, but as soon as your proc cache changes or you reboot your server then you start losing all of the valuable information it...
November 5, 2019 at 11:21 am
I might be tempted to do it in 2 stages
select * from dupes inner join (select first4 from dupes group by first4 having count(*) >1) dupes2 on dupes2.first4=dupes.first4
you might have...
November 5, 2019 at 11:13 am
Not what I wanted to hear but appreciate the response 🙂
I feel for you
you can script out your publications and subscriptions nice and easily
depending on whether you can knock...
November 5, 2019 at 10:21 am
select N'\\ABCD\EFGH\IJKL\MNSP\'+ @@servername+'\AL.txt'
November 5, 2019 at 9:11 am
unfortunately transactional replication is "distributor led" - you will need to move distribution to the 2016 instance (highest version wins) - which means you will need to rebuild the publications,...
November 5, 2019 at 8:56 am
MVDBA (Mike Vessey) wrote:what happened to good old fashioned command prompt tools
dir /s *.ldfnone of this fancy SQL malarkey 🙂
Heh... I love it! No PoSh required, either.
it is...
November 4, 2019 at 4:23 pm
We don't ever allow our Devs access to Production. What we do for them, however, is create a "production copy" database on a daily basis down to a non-prod...
November 4, 2019 at 11:35 am
also check out "attach single file db" - but don't forget to clean up the old ldf files if you do use this
November 4, 2019 at 9:33 am
ok - so why not script the attach
EXEC sp_attach_db @dbname = N'mydatabase',
@filename1 =
N'C:\mydatabase_Data.mdf',
...
November 4, 2019 at 9:31 am
I've started using MERGE for updating records because UPDATE just freaks me out. It takes more thinking out but will get faster with practice and it's good to get...
November 4, 2019 at 9:24 am
Hello!
I need to run weekly report for each month on Friday, beginning the first day of each month, and ending the last day of the month
Example
· 10-1-2019 thru 10-4-2019
· ...
November 1, 2019 at 4:28 pm
Del - just in case you missed it (outside our private messages) - on the link i sent you, just scroll down and you'll find the standalone installer - don't...
November 1, 2019 at 3:54 pm
Viewing 15 posts - 706 through 720 (of 1,999 total)