Viewing 15 posts - 12,226 through 12,240 (of 14,953 total)
I may be missing something, but this seems odd to me. You monitor approximately 1,000 websites, and have been doing so for about 3 years, with the normal traffic...
August 21, 2008 at 12:28 am
I don't bother with them. They currently have no function, and they don't make the proc more clear to me.
One of the developers at the place I work uses...
August 19, 2008 at 8:16 pm
I guess I don't see why it has to be uppercase in the SQL Agent Job Owner field. I've typed them in lower-case in that field without difficulty.
I think...
August 19, 2008 at 8:13 pm
Sorry for the latency. Really busy for a few days.
In my test, I didn't actually transmit any data with XML. I just used an XML data type to...
August 19, 2008 at 8:10 pm
If you want to include nulls, but make sure they don't exist in the target table, you'll have to do two tests.
Do your "Where Not In" test, then also add:
or...
August 19, 2008 at 8:08 pm
"Where Not In" returns all values that aren't contained in the set. Since null is an unknown value, it could be equal to anything, so Where Not In won't...
August 18, 2008 at 9:27 am
I don't believe that defragmenting a nonclustered index on a heap table works.
August 18, 2008 at 9:24 am
And, of course, I ask for your benchmark, and we post at the same time. 🙂
August 18, 2008 at 9:02 am
Carl, I just performed the following test. Please tell me what you're doing differently in this benchmark than what I'm doing:
create table dbo.Calendar (
Date datetime primary key,
constraint CK_Date check
(datepart(hour,...
August 18, 2008 at 8:59 am
If you run that code as-is, you shouldn't need the cursor.
August 18, 2008 at 8:25 am
If it's meant to be an exact copy of the source database, you might consider backup and restore. It's faster and more effective than the wizard.
August 18, 2008 at 8:19 am
You'll either need to output it as two data sets or as XML. Since I suggested XML above, and you're still asking, I'll assume that's not a viable solution...
August 18, 2008 at 8:15 am
The difference is because Joins are done before Wheres. The Join clause eliminates certain rows that the Where clause would allow, or the Join clause includes certain rows that...
August 15, 2008 at 2:49 pm
rbarryyoung (8/15/2008)
August 15, 2008 at 2:46 pm
Probably is worth asking for. Probably won't get, but can't hurt to ask.
August 15, 2008 at 2:02 pm
Viewing 15 posts - 12,226 through 12,240 (of 14,953 total)