Viewing 15 posts - 61 through 75 (of 1,192 total)
I was not expecting Godwin to apply here...
Thanks for running the tests Gail. I ran the iTVF version too for 1m rows & the times are identical to the NULLIF...
September 9, 2016 at 6:51 am
SSDT used to be just the SQL connection & deployment tooling - source control, dacpacs and the like.
Now they've integrated the BI tooling for AS/IS/RS (used to be called SSDT-BI)...
September 8, 2016 at 12:57 pm
Isn't localDB pretty integral to how SSDT works?
September 8, 2016 at 12:13 pm
Luis Cazares (9/8/2016)
What's the problem with using NULLIF?
SELECT numerator / NULLIF( denominator,...
September 8, 2016 at 12:08 pm
As others have said, CTE's are just for easy formatting, they're all run together at execution. What you're effectively running is this...
select *
from (select x,y,z
from Main_Table
inner join...
September 8, 2016 at 11:53 am
Ah, well good luck!
September 8, 2016 at 11:41 am
Ah well, there may be someone along soon with a better answer, even from the Redgate side - there's plenty of Redgate people around here!
Full snapshots that frequently are definitely...
September 8, 2016 at 10:52 am
Is this any help? It's for SQL 2012.
Error log entries on the screenshot:
System Health Monitor Thread: Operating system error Exception 0x1 encountered.
Error: 17053. Severity 16, State:1
External dump process return...
September 8, 2016 at 8:45 am
Sure it's not the transaction log that's 200GB?
sp_cycle_log doesn't delete the old file until it goes over the max number of log files (default is 6) so the 200GB file...
September 8, 2016 at 8:09 am
Ok, then no, I don't think there's a way to stop them being logged in msdb. Don't envy you having to deal with it!
September 8, 2016 at 7:58 am
Try trace flag 3226 https://msdn.microsoft.com/en-us/library/ms188396.aspx
Although I'm not sure if it works for third party backups.
Don't think you can stop entries going into msdb tables, but they can be purged with...
September 8, 2016 at 7:38 am
WHERE a.SQL2 like 'Select%PlanCode%From%'
AND CHARINDEX ('FROM', a.SQL2) > CHARINDEX ('PlanCode', a.SQL2)
September 7, 2016 at 11:23 am
Gary Varga (2/12/2013)
September 7, 2016 at 9:57 am
No problem, and good luck!
September 6, 2016 at 12:51 pm
matthewful3 (9/6/2016)
Does it matter that one particular table is...
September 6, 2016 at 11:18 am
Viewing 15 posts - 61 through 75 (of 1,192 total)