Viewing 15 posts - 1 through 15 (of 16 total)
This is a very minor quibble, but presenting procs and functions like these in the correct case, ie. sp_MSforeachdb instead of sp_msforeachdb, will help maintain the sanity of those poor...
December 2, 2014 at 9:23 am
Linked servers can do horrible, horrible things for performance beyond simple network latency (statistics issues, forced RBAR). But sometimes you're stuck with them, so you have to deal...
Anyway, the...
November 18, 2014 at 11:23 am
Interesting stuff. I did some playing around and on my heap table (which just has 1 record, and four columns) it has a rowmodctr of 137. It didn't...
October 28, 2014 at 7:52 am
I agree, the primary factor here (given the limited information we have) is AGs in synchronous. If you don't require automatic failover or zero potential data loss I would...
October 28, 2014 at 7:30 am
It's a bit manual but if you are talking about the rightclick on db, Tasks, Generate Scripts option, you can go through that and select everything in the schema, in...
October 27, 2014 at 7:15 am
TSQL_Newbie (10/22/2014)
WHERE (= '12345' AND
= '67890')
You'll always get 0 rows returned with that...seems like you are implying an OR or IN operator. The column...
October 22, 2014 at 1:20 pm
Jacek Falkiewicz (10/20/2014)
TheSQLGuru (10/20/2014)
20% frag on a 13GB table could be quite a lot of page swaps.
The point is, what produce more page swaps: reorganize or rebuild?
According to Microsoft "Reorganizing...
October 22, 2014 at 12:43 pm
I'm not sure what problem you would have doing that. The setting is an instance, not database level setting...when you restore the database backup that came from a "mixed...
October 22, 2014 at 12:29 pm
How realtime do the reports have to be? Offloading the reporting to another (Standard Ed.) server, with automated nightly restores, or perhaps log-shipping with readable secondaries, might be a...
October 22, 2014 at 12:13 pm
You might also consider trying it with compat level 120, but running the query with OPTION (QUERYTRACEON 9481) which forces it (even in 120 level) to use the old CE....
October 22, 2014 at 12:06 pm
Perry Whittle (10/20/2014)
sounds like a memory issue, try lowering the max transfer size to around 1MB and see what results you get
Thanks for the idea! I tried 1MB and...
October 20, 2014 at 1:26 pm
FYI, backups failing again today with full stack dump any time one is invoked, by native tools or LiteSpeed.
We're already enmeshed in a never-ending ticket with MS Premier...
October 20, 2014 at 1:11 pm
I'm running into this as well, will be trying CU3 just in case, but I don't see anything listed on the pages for CU1/2/3 that seem to match. Strange,...
October 15, 2014 at 2:23 pm
Out of curiosity I peered at the guts of that system sp, you might be able to do something like this to make it simpler:
select u.name as LinkedServer, t.name as...
March 20, 2014 at 7:34 am
Depending on your specific requirements...I would start with sp_helplinkedsrvlogin, maybe if you need to filter for something, push it into a temp table and then select out only the stuff...
March 20, 2014 at 7:18 am
Viewing 15 posts - 1 through 15 (of 16 total)