Viewing 15 posts - 9,391 through 9,405 (of 18,926 total)
Were you executing it on the correct server, on the correct db?
August 20, 2007 at 12:35 pm
What was causing the problem?
What did you change in the table definition?
August 20, 2007 at 12:16 pm
One last trick...
Have you tried TRUNCATE / Full insert?
Truncate is almost not logged and the insert would have a lot of writes, but 0 work on the cpu.
August 20, 2007 at 12:14 pm
Anyway you can setup replication?
I'm no expert at this but it may very well solve the problem.
August 20, 2007 at 12:13 pm
One small thing may help here...
INNER JOIN ON ... WHERE Source.Col1 <> Dest.Col1 --watch out for nulls here
That way you have less writes on the disk, but it's harder on...
August 20, 2007 at 12:00 pm
If not in a cookie, this set of tables will solve your problem :
Reports
ReportId
ReportName
ReportsParameters
ParameterID
ReportID
ParameterName
Users
UserID
UserName
UsersParameters
UserID
ParameterID
ParamValue
Then just select those values from the db and overwrite the default parameters when they exist. ...
August 20, 2007 at 11:56 am
Have you run DBCC checkdb?
Any other db integrity checks?
August 20, 2007 at 10:06 am
From the first line in the article
:
SQLServerCentral.com, along with support from Red Gate Software and End to End Training, have been...
August 20, 2007 at 10:05 am
I can't really test this without some sample data on all tables. As far as my eyes can see, the trigger is not the problem... unless that trigger triggers another...
August 20, 2007 at 9:15 am
This runs perfect on my pc.
Do you have a trigger on that table that could throw this error?
August 20, 2007 at 8:58 am
Backup the DB.
Restore on another server. Delete all the data you don't need. Then run sp_spaceused. It might be advisable to run dbcc cleantable if you have blob columns. You...
August 20, 2007 at 8:53 am
Never heard of this, but maybe a workaround : have you tried backing up to a different folder then moving to that folder?
August 20, 2007 at 8:50 am
Why this is a quiet thread... I would have expected a few more comments by now.
I'd like to thank everyone who donated, I'm sure that'll make a big difference in...
August 20, 2007 at 8:48 am
Viewing 15 posts - 9,391 through 9,405 (of 18,926 total)