Viewing 15 posts - 1,156 through 1,170 (of 7,429 total)
BETWEEN is purely simpler to read. There is no specific engine enhancements that make BETWEEN any faster.
April 29, 2005 at 8:09 am
Just FYI the index changes may have had some impact but that much seems like it was possible more of a maintance issue. The problem is you just never know...
April 28, 2005 at 12:15 pm
Also, before I forget. Make sure you test on a none production machine, backup the database before actually running, and use a BEGIN TRAN before you run this part
CREATE TABLE...
April 28, 2005 at 6:48 am
First is ACCOUNT_PRODUCT the only table that will have a reference to PRODUCT ?
If so I suggest something like this.
CREATE TABLE dbo.Temp_Products (
PRODUCTID char(2) NOT NULL,
CODE VARCHAR(30) NOT NULL PRIMARY...
April 28, 2005 at 6:37 am
I agree with Mike's statements. You cannot assume Berger King and Burger King are the same company.
I have seen on a few occasions that names can look similar for...
April 27, 2005 at 7:09 am
A few questions:
1) How many records are you talking.
2) Does the data need to be unique on some or all of the columns, which ones?
If the data doesn't need to...
April 27, 2005 at 6:56 am
Based on what I see this might help.
Consider change the indexes on AccountingDocumentitem to
Clustered Index
AccountingDocumentNbr, FiscalYearNbr, MSGLCompanyCode
Non-Clustered Indexes
1) BillingDocumentNbr, MSAccount2Code
2) ClearingAccountingDocumentNbr
3) CustomerNbr
4) AccountingDocumentItemNbr
Remember your clustered index is effectively...
April 26, 2005 at 9:13 am
The purpose of an IDENTITY property is to create a uniqness to a record that does not have a naturally occurring key or to act as a surrogate in replacing...
April 26, 2005 at 6:45 am
Does wrkAccountingDocument have any indexes.
Also, can you post the DDL of the table (CREATE statement) so I can see the structure and let me know which columns if any are...
April 26, 2005 at 6:30 am
I believe the only reason for it's support is to be able to span multiple logical drives. That is the only reason I have ever seen where you would need...
April 26, 2005 at 6:12 am
I would suspect yes, but canot find anything on MS site or elsewhere to say 100 percent for sure.
April 13, 2005 at 6:34 am
Take a look in the Windows Event viewer for that time fram under system and application. I suspect you will find an insufficient memory event. Sounds like you tried to...
April 13, 2005 at 6:17 am
That name sounds like it might be part of package logging found under the package properties. Check there.
April 13, 2005 at 6:15 am
All cursors whether in your scope or not or just those in your scope, either way I believe there is a system XP or SP for that but don't have...
April 12, 2005 at 9:06 am
Viewing 15 posts - 1,156 through 1,170 (of 7,429 total)