Viewing 15 posts - 316 through 330 (of 519 total)
That was what I suggested.
The evaluation of null is performed differently in 2000. Its more in line with VB now. For years Null was treated as a value, while in...
December 16, 2002 at 1:09 pm
Good Proc.
Documented and NO CURSORS unless absolutely neccessary.
Simple concepts, but you'd never believe how often they're thrown out the window.
December 16, 2002 at 1:02 pm
removal of temp objects, cursors, sort or hash tables, will all cause these clean up tasks to occur. What are you trying to determine? Do you have a high...
December 16, 2002 at 12:52 pm
Here's what I use for my dumps.
Full dump scheduled 1/day around midnight.
declare @v-2 varchar(250)
select @v-2= '\\BackupServer\MSSQL\BackUps\' + 'MKDB_DB' +
convert(varchar(6), getdate(), 12) +
convert(varchar(2), getdate(), 108) +
substring((convert(varchar(19), getdate(), 100)), 18, 2)
dump...
December 16, 2002 at 12:49 pm
Select * from Table where email field is null.
What kinds of errors? even if you did it with = null, it wouldn't give errors. How are you going about it...
December 16, 2002 at 12:03 pm
It looks like a security isssue. With the errors complaining about not being able to execute 'sp_MSadd_repl_commands27hp' on 'TPNPRD01', I'd say it either doesn't have the right securities, or cannot...
December 16, 2002 at 11:54 am
What happens is this:
START SNAPSHOT GENERATION
1. Scripts are created on every object involved, and written to a directory on the local drive.
2. Data files are created holding the data from...
December 16, 2002 at 11:41 am
I both agree and disagree with David. He's absolutely correct about technical people not needing to be running the company. However, Even the highest CEO in the company had better...
December 16, 2002 at 10:51 am
That is actually the most realistic view of the corporate system I have seen in 16 years of contracting. Its too bad that its not easier to get everyone in...
December 15, 2002 at 11:42 pm
That's one of the few redeeming qualities of being contract. You get to experience such a WIDE array of issues.
December 13, 2002 at 10:48 am
That is excellent.....I can't wait to test it out myself....
December 12, 2002 at 10:00 pm
I've seen a couple issues like this. In one, as burthold mentioned, it was cheap cable (only 76% shielded) picking up RF frequencies.
The other was an incorrectly terminated channel,...
December 12, 2002 at 3:29 pm
With Fullscan does not affect rowcounts.
December 12, 2002 at 3:19 pm
Working with a 100,000 row table of numeric values, and examining the execution plan, Here's what I find.
Select a,b,c,d ...
December 11, 2002 at 9:37 am
SO, all together, going that route, it took about 4 minutes? That seems MUCH more inline with what I would expect. Did the transaction log still show the huge amount...
December 11, 2002 at 9:18 am
Viewing 15 posts - 316 through 330 (of 519 total)