Viewing 15 posts - 46 through 60 (of 484 total)
Well here goes my thoughts.
I think the site and the contests work really well at the moment because it hasn't got too huge. I was really into expertsexchange about 3...
January 14, 2003 at 1:46 am
I would concur
What is the selectivity of the accountNoToDebit column, adding an index to this may help.
Other options are a covering index on this column and the date.
The more complex...
December 26, 2002 at 4:32 am
I would concur
What is the selectivity of the accountNoToDebit column, adding an index to this may help.
Simon Sabin
Co-author of SQL Server 2000 XML Distilled
December 26, 2002 at 4:31 am
Have had this numerous times and one cause could be a known feature with parallisma and large amounts of data.
With large amounts of data the cost gets above the...
December 26, 2002 at 4:28 am
Have a look at
http://www.sqlservercentral.com/scripts/contributions/528.asp
Simon Sabin
Co-author of SQL Server 2000 XML Distilled
December 26, 2002 at 4:26 am
Its not really solving the problem, an upgrade might make things run faster and thus locks are not held for as long but if your website gets mroe usage you...
December 12, 2002 at 7:27 am
Have you changed the sa password from the value in the script of SA
Simon Sabin
Co-author of SQL Server 2000 XML Distilled
December 12, 2002 at 7:24 am
Could change the message in sysmessages ?
Simon Sabin
Co-author of SQL Server 2000 XML Distilled
December 12, 2002 at 7:23 am
The other aspect to be aware is that NULL + 'hello world' = NULL in SQL 7 on wards without ansi nulls off
Simon Sabin
Co-author of SQL Server 2000 XML Distilled
December 12, 2002 at 5:50 am
I believe thats the only way, without doing some sp_Oa stuff
Simon Sabin
Co-author of SQL Server 2000 XML Distilled
December 12, 2002 at 5:21 am
Updates are bad, if you are to alter large amounts of data, renaming the table, creating the new one and then copying the data back in is the quickest way...
December 12, 2002 at 3:47 am
The problem with using MIN is that you could end up with the wrong test for the grade.
Name TestNo Grade
joe 3 A
joe 2 B
joe 1 C
With this data you would...
December 12, 2002 at 3:26 am
A few comments questions.
How big are the three tables?
Do you have an index on Amex.ReportDate and Prof.ReportDate ?
You have no relation between your sub query and the main query so...
December 12, 2002 at 3:16 am
Using SQL Lite Speed will be good for log shipping as the files are compressed by about 90%
Simon Sabin
Co-author of SQL Server 2000 XML Distilled
December 12, 2002 at 2:56 am
Retention is something you will need to consider. If space is an issue then you can use sqllitespeed, which compresses the backups (and can encrypt) saw a demo last week...
December 12, 2002 at 2:55 am
Viewing 15 posts - 46 through 60 (of 484 total)