Viewing 15 posts - 6,856 through 6,870 (of 7,597 total)
The only real "success" is for the 3rd party hack cashing the checks. Anyone trying to implement or maintain this system is, as "The Big Bang Theory" put it,...
January 28, 2013 at 10:09 am
Jeff Moden (1/28/2013)
January 28, 2013 at 9:22 am
Just curious:
How did you determine that the deadlocking was due to FK lookups?
Legitimate FKs should be used when possible. FK definitions in SQL itself are vastly more efficient...
January 25, 2013 at 3:12 pm
ScottPletcher (1/25/2013)
MyDoggieJessie (1/25/2013)
January 25, 2013 at 1:20 pm
MyDoggieJessie (1/25/2013)
January 25, 2013 at 12:46 pm
MyDoggieJessie (1/25/2013)
newdba_sql (1/25/2013)
So this script will check if the job's last run status is successful, then it will...
January 25, 2013 at 12:18 pm
Sean Pearce (1/25/2013)
PLEASE NOTE: You have not aliased all your columns so I have no idea which tables they come from. You must edit the following queries to remove any...
January 25, 2013 at 8:55 am
Of course if you just code your dates as 'YYYYMMDD', conversion always works, and you don't have to waste a second on any of that other garbage.
January 24, 2013 at 4:50 pm
SQL* (1/23/2013)
What is the need of computed column if we can do the same thing in the query/application?
The two big advantages of computed columns are:
1) a consistent definition;
2) defined in...
January 24, 2013 at 4:47 pm
Lowell (1/24/2013)
January 24, 2013 at 4:35 pm
An extraordinarily large table (which I'll abbreviate "xlt" for convenience) can indeed cause unusual issues.
If you use tempdb, it needs (lots of) extra disk space, which basically can't be freed...
January 24, 2013 at 2:58 pm
Steven Willis (1/24/2013)To prevent unexpected errors, you should validate your dates. And the ISDATE function is not a reliable method for such validation.
ISDATE() is reliable for what it claims to...
January 24, 2013 at 2:39 pm
Marius.D (1/24/2013)
TempDB seems to be always full, maybe I'll reboot first.. thanks!
Then you've got a second issue that needs addressed! 🙂
Increase the size of tempdb until you have "slack" except...
January 24, 2013 at 10:32 am
HowardW (1/24/2013)
ScottPletcher (1/24/2013)
HowardW (1/24/2013)
ScottPletcher (1/24/2013)
HowardW (1/24/2013)
There's no need to make the column persisted prior to indexing it.
That's not necessarily always true. You might persist a column if its...
January 24, 2013 at 10:30 am
HowardW (1/24/2013)
ScottPletcher (1/24/2013)
HowardW (1/24/2013)
There's no need to make the column persisted prior to indexing it.
That's not necessarily always true. You might persist a column if its requires significant...
January 24, 2013 at 10:08 am
Viewing 15 posts - 6,856 through 6,870 (of 7,597 total)