Viewing 15 posts - 346 through 360 (of 921 total)
You will probably need to use the image data type for mp3s.
--Jonathan
December 11, 2003 at 2:57 pm
The difference between decimal and numeric is part of the ANSI SQL spec and doesn't pertain to SQL Server. It basically states that the precision of a decimal data...
December 11, 2003 at 9:41 am
It's the Text property of the DMO column object's DRIDefault property.
--Jonathan
December 11, 2003 at 5:19 am
Probably more than you want to know, but there's a paper (Automating Statistics Management for Query Optimizers) on this from the developers of the Index Tuning Wizard.
--Jonathan
December 10, 2003 at 3:39 pm
The SQLServer:Cache Manager counters, including Cache Hit Ratio are for cached objects, not data pages. The SQLServer:Buffer Manager|Buffer cache hit ratio counter is for cached data pages, as are...
December 10, 2003 at 3:07 pm
Good article, Frank.
But I think you're mistakenly mixing data atomicity into Codd's Information Rule. I didn't check your sources, but decomposition is a function...
December 10, 2003 at 2:32 pm
Insert the exceptions into a temporary table and then delete the rows that don't have IDs in the temporary table.
--Jonathan
December 10, 2003 at 12:28 pm
FLOOR(SUM(DATEPART(hh,TimeCol))+SUM(DATEPART(n,TimeCol))/60)+(SUM(DATEPART(n,TimeCol))%60)/100.
--Jonathan
December 10, 2003 at 10:09 am
quote:
quote:
If you're bottlenecked on I/O (typical of writes in an OLTP environment), then you've...
December 10, 2003 at 7:56 am
quote:
The only real answer is "test", but my two cents --The biggest issue in how this works is what they are...
December 9, 2003 at 3:09 pm
quote:
I bet Jonathan will post PARSENAME stuff.Frank
No, Noel's way is better than PARSENAME for this...
December 9, 2003 at 2:06 pm
Why not just use an associative table with the payment PK and debit instruction PK?
--Jonathan
December 9, 2003 at 9:45 am
Can't you use your report writer for this?
SELECT RIGHT(CONVERT(char(10),GETDATE(),103),7)
--Jonathan
December 8, 2003 at 3:08 pm
quote:
Yes, and here are my test cases.
Interesting; I stand corrected with data like this....
December 8, 2003 at 12:15 pm
Viewing 15 posts - 346 through 360 (of 921 total)