Viewing 15 posts - 856 through 870 (of 1,065 total)
Another technique is to create a new table containing the rows you DON'T want to delete. You can create the new table using SELECT INTO (which is not logged), then delete the...
March 23, 2004 at 1:08 am
No issues that I know of.
SQL Server will not shrink the end of the log if it hasn't been backed up.
February 23, 2004 at 1:32 am
I can't test out an exact solution, as I don't have access to SQL Server at the moment, but you may be able to do what you want with something...
February 20, 2004 at 8:56 am
Enterprise Manager uses ODBC to run the query, and hence gets the default ODBC timeout (either 30 or 45 seconds, I can't remember which).
I couldn't find a way of changing...
February 20, 2004 at 8:31 am
Scan Count is the number of times SQL Server performs an action on the table e.g. If you have a query that Selects all orders and order details, you may...
February 10, 2004 at 1:22 am
It means that tempdb (or the disk it is on) has filled up.
January 16, 2004 at 1:36 am
If it is a primary key, then it will already be indexed.
Are there any delete triggers on the table?
If so, do they do anything that is taking the time?
January 15, 2004 at 12:33 pm
Is retailmemberid indexed?
If not, the delete statement will have to search through the whole table looking for rows with the relevant retailmemberid.
January 15, 2004 at 1:17 am
Also, if any any inserts are done to your table, and the transaction is rolled back, the identities don't get re-used and will therefore cause gaps.
January 13, 2004 at 1:04 am
Mark
quote:
The @@rowcount will not have a value at that beginning stage of your trigger (ie. it IS set by statement that fired...
December 16, 2003 at 9:26 am
What account is SQL Server starting up as?
If it is the localsystem account, then it has no network access, regardless of permissions.
December 16, 2003 at 9:13 am
Have experienced exactly the same myself.
I'll bet that your function is a Scalar function, in which case, SQL Server seems to execute the function just like a stored procedure.......
December 12, 2003 at 1:14 am
Does your maintenance plan include a FULL database backup as well?.
A full backup will block the transaction log backup until it completes
December 9, 2003 at 1:24 am
Thanks Jonathan
The comparison tables in the link you supplied contain the 'definitive explanation' I was searching for.
December 6, 2003 at 2:31 pm
I have had exactly the same performance problems with Scalar functions.
I suspect that if you run Profiler when running the function, you will see Profiler flooded with...
December 4, 2003 at 3:37 pm
Viewing 15 posts - 856 through 870 (of 1,065 total)