Viewing 15 posts - 6,526 through 6,540 (of 7,472 total)
Thanks for the response.
i'll have my network-guys check this.
In the...
July 31, 2005 at 8:01 am
Can you post the job (create ddl) you are runing to "correct" the stats ?
btw : e.g. [_WA_Sys_BENENNUNG_3D5E1FD2] is an autogenerated system statistic.
July 28, 2005 at 12:50 am
If this is the actual copy, check your applications errorlog (response.write(exc.tostring())) !
You are using "WHERE SalesID = @SalesD"; but the parameter you provide calls it @SalesID
July 27, 2005 at 12:30 am
Indexdefrag is also less blocking than dbreindex, but it doesn't do the same phisical thing.
We use Indexdefrag when our productionmill is active (24/7) and we use dbreindex during planed production maintenance...
July 27, 2005 at 12:18 am
do you use transactions ?
if yes :
do you commit (data should be there) or rollback (no data will be there) the transaction
Do you...
July 26, 2005 at 8:33 am
What if you put it all in a single batch:
ALTER DATABASE dbName SET SINGLE_USER WITH ROLLBACK IMMEDIATE
go
DBCC CHECKDB ( 'dbName' ?? REPAIR_ALLOW_DATA_LOSS | REPAIR_FAST | REPAIR_REBUILD )
WITH ALL_ERRORMSGS
July 26, 2005 at 7:11 am
are you the onlyone working on that issue ?
Check your db-status again ! (sp_helpdb)
When putting a db in single-user , I suggest...
July 26, 2005 at 6:25 am
I cannot find anything tricky in the query, so I guess it's a data-problem.
It contains only INNER-joins. Are you sure the data always...
July 26, 2005 at 12:48 am
check the pros and cons:
Breaking your recovery model can have its consequences !
If I breake it, I go from FULL to BULK, but rarely to simple.
I have some databases of...
July 26, 2005 at 12:39 am
aha, ownership-chaining-problems
Who didn't stumble into that.
It may also be e.g. the query is build dynamic or run dynamic
like
create proc owner1.myproc
as
set nocount...
July 26, 2005 at 12:29 am
You can also make the backups using SQL-devices.
So from within you sql-backup-job you can see zip , but your backup-device will point to an...
July 26, 2005 at 12:18 am
I'll be flying in on 24 sept.
Brussels - Chicago - Dallas
I hope to be awake by Monday morning
July 26, 2005 at 12:09 am
if I'm correct Log P.I. can do such action.
SQLServer itself cannot, unless you do a full restore to point in time.
July 24, 2005 at 11:57 pm
also keep in mind this user can be databaseowner.
check out sp_changedbowner @loginame = 'sa' ,@map = 'true'
- http://www.sqlservercentral.com/scripts/contributions/1502.asp
- http://www.sqlservercentral.com/scripts/contributions/500.asp
July 22, 2005 at 3:41 am
- You just need sqlserver backups to be able to restore. The backup-history is just a help-set for EM to determine a gui for restore. You can restore on another...
July 22, 2005 at 3:10 am
Viewing 15 posts - 6,526 through 6,540 (of 7,472 total)