Viewing 15 posts - 46 through 60 (of 482 total)
So after the above comments, it's now a giant CASE statement.
May 29, 2019 at 2:19 pm
So I got a prototype going as a computed column calling a scalar function, and the perf hit appears negligible.
Further investigation underway.
May 28, 2019 at 6:41 pm
Coming from you, that's a... shall we say, less than ringing endorsement of the current implementation.
Here's the bones of the table, minus the meat columns - and believe it or...
May 28, 2019 at 2:42 pm
PRINT, IF APP_NAME() LIKE "%QUERY%" BEGIN...END, DECLARE @Debug variable
I remember being SOOO excited when SQL2K came with a debugger... and the crushing disappointment at its unmitigated clunkiness.
May 28, 2019 at 11:36 am
If you need to track the date of an insert, and the table doesn't already have a field from which that can be derived, that's a case for Insert trigger.
As...
May 14, 2019 at 12:26 pm
Well, you asked specifically how it could be achieved using constraint violations, so that's what I came up with.
IMHO, it's clumsy at best. And, you must hard code either the...
May 13, 2019 at 11:11 am
I suppose you could achieve this using TRY-CATCH. Try to Insert it. If the insert fails on a violation of that constraint, increment the visit count for the user.
I personally...
May 8, 2019 at 11:03 am
I completely agree that the implementation of the OUTPUT clause for INSERT is... shall we say, disappointing.
And you're correct that there may be obstacles to modifying prod tables.
Another workaround I've...
April 2, 2019 at 1:53 pm
One workaround is to add the OldId column to the new table, and include it in your INSERT statement. It'll then be available to the OUTPUT..INTO.
You can then decide if...
April 2, 2019 at 10:55 am
I ran into this before: while I can't locate the exact reference, I believe only columns in the insert list and identities (ie, columns from the inserted table) can be...
January 10, 2019 at 4:08 am
That's pretty impressive Alan, and applied to my real-world data, the results look something like expected.
Thank you very much.
November 21, 2018 at 7:02 am
Ah sorry, I thought thew WITH(DISTRIBUTION = xxx) was a required part of the tools for the analysis.
I'll have a go at this, thanks!
November 20, 2018 at 11:33 am
Yup, sounds like what I want to do. Except in SQL Server 2008. I don't have access to DW.
November 20, 2018 at 11:10 am
Thanks. I agree with you and plan to use check constraints as a compromise...
September 27, 2018 at 5:41 am
Something like
try
{
Get-WmiObject win32_Service -ComputerName $serverList | where {$_.DisplayName -match "SQL Server"} | select SystemName, DisplayName, Name, State, Status, StartMode, StartName |
ConvertTo-Html -Property SystemName,Name,State,Status,StartMode,StartName -Head $Header...
June 21, 2018 at 4:56 am
Viewing 15 posts - 46 through 60 (of 482 total)