Viewing 15 posts - 31 through 45 (of 58 total)
Do not forget to use the tablock parameter to improve performance whilst using the bulk insert statement.
June 14, 2003 at 7:01 pm
Brian, think that you should implement a time delay on the question so that all the hacks like myself cannot nip into BOL and find the answer. Guess the real...
June 14, 2003 at 6:59 pm
I guess that when you get to this stage of affairs, what you are really talking about is writing your own locking table, and keeping track of 'system locks', rather...
June 14, 2003 at 6:55 pm
As we all know 'I' (via the constraint object)is enforced by SQL Server whilst the data is still in the data cache, and has been prompted (wanted to say triggered...
June 14, 2003 at 6:50 pm
On the whole i agree with DAVNovak, that every table should have a unique reference point.
Just because you have a PK does not mean that there is no data...
June 14, 2003 at 6:44 pm
Probably missing the point as usual, but since Access and SQl Server have different schemas, is not impossible to copy objects(apart from base) between the two.
June 14, 2003 at 6:35 pm
MS recommend that System monitor is used when checking hardware issues.
June 14, 2003 at 12:10 pm
JPipes is correct, unfortunately with the current versions of SQL Server, many of the date settings can only be set for the current connection, and not as a default for...
June 14, 2003 at 11:58 am
I suppose that you could run a series of aggregate functions and the rows that you will be moving in the original table, then carry out the same functions on...
June 14, 2003 at 11:55 am
Why not code the insert into statement, bet it will be quicker than DTS. If you need to create the destination tables, then select into. You would then have to...
June 14, 2003 at 9:57 am
On the remote server you will need to create a share and make sure that MSSQLServer can write to the share. Imagine your server is called sql1 and the share...
June 14, 2003 at 8:12 am
You could try setting the recovery model to simple prior to running the nested transactions, and then resetting the option after the transaction has completed. When the simple recovery model...
June 14, 2003 at 8:08 am
Primary Keys are stored as constraint objects within a database. All objects must have names, as mentioned in a previous post, the names should be meaningful and follow a naming...
June 14, 2003 at 6:50 am
Maybe you could simplfy matters for yourself by creating a single column surrogate PK, and that would help Access with the date handling routines.
June 14, 2003 at 6:46 am
Try creating a non - clustered index on the hitdate column, because that should improve performance for the totalhitstoday report. Covered queries (queries where all the columns listed have an...
June 14, 2003 at 6:43 am
Viewing 15 posts - 31 through 45 (of 58 total)