Viewing 15 posts - 5,131 through 5,145 (of 7,636 total)
Well, it still depends on your table definition and data distributions, but:
1) I doubt that you can do much with this one. Maybe a clustered index on [ordered], but...
October 22, 2008 at 9:32 pm
It depends on the table's definition and what queries you are using.
October 22, 2008 at 8:54 pm
OK, this should do it.
--===== If the test table already exists, drop it
IF OBJECT_ID('TempDB..#MyTestRates','U') IS NOT NULL
DROP TABLE #MyTestRates
IF OBJECT_ID('TempDB..#MyTestCalendarTally','U') IS NOT NULL
DROP TABLE #MyTestCalendarTally
IF OBJECT_ID('TempDB..#MyTestCurrencies','U') IS...
October 22, 2008 at 8:16 pm
Thanks, Matt. I'm still waiting to see how I did in the evaluations from everyone else...
October 22, 2008 at 4:19 pm
I am somewhat skeptical that all of your requirements can be met using SQL Server 2000 (That is, non-RBAR, non-Triangular View). however, I am willing to give it a...
October 22, 2008 at 12:50 pm
This is probably caused by commas in your string-based columns. You will need to put quotation marks around the columns that might have commas embedded in their text. ...
October 22, 2008 at 12:20 pm
Oops, you should change the Index names (I did a cut and paste).
Or alternatively, drop the existing indexes of the same names as they are redundant now.
October 22, 2008 at 12:15 pm
Thanks. You need these two indexes:
CREATE NONCLUSTERED INDEX [IX_ptDictation_MRN_Status] ON [dbo].[ptDictation]
( [MRN] ASC,
[DOS] ASC,
...
October 22, 2008 at 12:12 pm
Glad I could help.
October 22, 2008 at 11:55 am
Note that this will handle multiple locations within the same form.
October 22, 2008 at 11:54 am
Apparently, the default behavior is to pad the attachment out to 256 characters. Which would definitely have the results that you see.
October 22, 2008 at 10:12 am
Viewing 15 posts - 5,131 through 5,145 (of 7,636 total)