Viewing 15 posts - 16 through 30 (of 78 total)
I understand that finding the root cause is important, but if you business depends on this, recreate your replication (If possible ofc).
June 6, 2016 at 2:53 pm
Hi Lowell,
Thanks for taking the time to read and reply.
That approach won't work for us as the server is set to UTC and we need to be able to handle...
June 6, 2016 at 12:56 pm
I started getting this error again so I added in a workaround with a synonym.
So far so good....
Repro code change:
IF OBJECT_ID('syn_CompColTbl', 'SN') IS NOT NULL
DROP SYNONYM syn_CompColTbl
-- Workaround for self...
March 22, 2016 at 9:39 am
Thanks for your input Chris.
You are right in what the function does.
I am migrating a SSIS package to a new acceptance environment. The package works fine live, but not in...
March 9, 2016 at 3:13 am
Annoyingly enough, this resolved itself after a couple of hours. :alien:
I went back to it to try adding synonyms into the mix, but it was no longer needed.
March 8, 2016 at 7:55 am
Problem's there again. Googling brought me back to my own post
Last time the SQL service was restarted to reduce the size. That happened during a major version update. No updates...
November 25, 2015 at 8:41 am
There's already a dmv for procedure stats.
SELECTDBName= DB_NAME(database_id)
, SPName= OBJECT_NAME([object_id], database_id)
, ExecCnt= execution_count
, TotalTime= total_worker_time
, TotalReads= total_physical_reads
--.... Heaps of columns
FROMsys.dm_exec_procedure_stats
WHEREdatabase_id < 32767
ORDERBY execution_count DESC
September 23, 2015 at 1:22 am
Iwas Bornready (9/8/2015)
Didn't know that happened, thanks.
I found out the hard way, myself. Why is it the MOCs never mention it.....?
September 10, 2015 at 12:37 pm
Great script! Thanks.
You can use the techniques shown here[/url] to account for the differences in SQL versions DMVs.
September 8, 2015 at 7:28 am
Thanks for sharing Randy!!
You can avoid all those cursors and simplify your code like this:
print 'I. Name of Members in Serveradmin role.:'
DECLARE @PrintResults NVarchar(4000) = ''
SELECT@PrintResults = @PrintResults + '...
September 7, 2015 at 8:43 am
Nice work Joshua!
I really like the ability to index!
@alan, I've been using the PhilFactors fabulous funky function as well.
I get the feeling I'll be using JSON Select...
September 7, 2015 at 7:54 am
The script demonstrates how metrics can be collected. It is not necessarily about the data being collected, but how to collect it. Other will probably want to collect other data....
September 3, 2015 at 9:29 am
What happened to my description?? Ugly post 🙁
August 28, 2015 at 2:08 am
PAH-440118 (8/28/2015)
I like this script - really useful - Thanks.
Glad you like it!
August 28, 2015 at 2:04 am
Excellent article!
Great detective work and very well written!
Hope you keep them coming 🙂
August 27, 2015 at 3:47 am
Viewing 15 posts - 16 through 30 (of 78 total)