Viewing 15 posts - 226 through 240 (of 335 total)
Are you sure dbo is the owner of the table.
I would open enterprise manager and confirm dbo owns the tables. I have worked on some systems that they gave the...
November 24, 2004 at 8:01 am
If Vantive_ID has a unique index on it, meaning it can't share a value with any other row in the table. You...
November 23, 2004 at 3:06 pm
I would start by looking at the table you are inserting into and looking at the structure of the unique index.
One of the items in your insert statement already exists in...
November 23, 2004 at 2:00 pm
How big is the log file, and how big is the datafile. The database freespace includes the unused portion of the log file. So if that 5gb is mostly free...
July 22, 2004 at 1:09 pm
I would look to see if your database is trying to grow while the inserts are happening. That will slow the insert time considerably.
You can issue: sp_spaceused to see...
July 22, 2004 at 11:54 am
Constraints are also not kept in sorted order like indexes.
Tom
June 17, 2004 at 8:47 am
I would find the table that sysindexes is refering to and drop the index on that table. Run the check again and see if there is still an error in...
June 17, 2004 at 8:34 am
Make the non-clustered index a covering index by adding the salesamount field to it. ie. Item, Store, Saleweek, salesamount. This will eliminate the bookmark lookup which I imagine is causing...
January 27, 2004 at 1:23 pm
Try to create an odbc connection to the as400 on the sql machine and then create a linked server for odbc using that dsn. I never got the ibm oledb...
January 20, 2004 at 9:28 am
Is this a new table that you are trying to load into or an existing one. I use linked servers all of the time to an as400 and as long...
January 20, 2004 at 7:23 am
I had a direct attached tape device and created a tape backup device. We ran fulls nightly transaction logs every 2 hours and differentials at noon and 6pm. I've never...
January 16, 2004 at 12:04 pm
Just because I'm feeling a little bitter today, Your boss is probably the same person that code select * from table instead of a list of columns. That's good design...
January 16, 2004 at 8:45 am
Thanks for the replies. I am not 100% sure when we are installing this but when we do I will let all know how it goes.
Thanks
Tom
January 16, 2004 at 7:04 am
Here is your query back using a bucket approach. I would be interested to see if performance is different using the case instead of the if.
Let us know.
Tom
SELECT CLIENT
, sum([SHORT...
January 16, 2004 at 7:01 am
Viewing 15 posts - 226 through 240 (of 335 total)