Viewing 15 posts - 466 through 480 (of 3,011 total)
I would be very careful with the materialized view.
There is a lot of potential for blocking or deadlocks, so you may find it just makes things worse.
August 31, 2012 at 9:09 am
I suggest not using such a simple name for a global temp table, because someone else could use the same name, and debugging the conflict would be a nightmare.
I recomend...
August 31, 2012 at 9:03 am
guerillaunit (8/31/2012)
August 31, 2012 at 8:35 am
Lowell (8/30/2012)
the IF UPDATE(Canc) is misleading...it doesn't test if the column changed...it tests if the column was referenced in the...
August 31, 2012 at 8:16 am
ahthomas (8/29/2012)
August 29, 2012 at 10:20 am
I haven’t seen anything where Microsoft promises that the discussed behavior will be always observed, now or in the future.
I haven’t seen anything that proves that the discussed behavior will...
August 29, 2012 at 10:07 am
You need to restore each tran log file in sequence. You don't need the STOPAT on each log restore, but it doesn't hurt. Restore each log with NORECOVERY,...
August 29, 2012 at 9:36 am
It would be simpler to just create a maintenance plan and let it create a new backup file each time and delete files older than a week.
Backup devices are really...
August 29, 2012 at 9:17 am
Make sure you have the latest SQL 2005 service pack installed.
There was a problem with deleting files in maintanance plans in the early versions of SQL 2005.
August 29, 2012 at 9:13 am
What do you want when the letter is z?
select NextLetter = char(ascii('z')+1)
Results:
NextLetter
----------
{
(1 row(s) affected)
August 29, 2012 at 7:43 am
At a former job I managed backups for over 300 SQL Servers, and all of them were backed up to UNC locations on file servers dedicated to SQL Server backups....
August 27, 2012 at 12:36 pm
Miles Neale (8/24/2012)
Michael Valentine Jones (8/24/2012)
Miles Neale (8/24/2012)
Michael Valentine Jones (8/24/2012)
1. Set the delivery date
2. Throw some crap together.
3. Test
4. If testing is successful,...
August 24, 2012 at 3:21 pm
Miles Neale (8/24/2012)
Michael Valentine Jones (8/24/2012)
1. Set the delivery date
2. Throw some crap together.
3. Test
4. If testing is successful, then go live, otherwise go...
August 24, 2012 at 2:25 pm
Ankur Bajaj (8/23/2012)
August 24, 2012 at 2:15 pm
Keep in mind the normal project life-cycle:
1. Set the delivery date
2. Throw some crap together.
3. Test
4. If testing is successful, then go live, otherwise go live.
5. Define requirements.
6. Go back...
August 24, 2012 at 1:29 pm
Viewing 15 posts - 466 through 480 (of 3,011 total)