Viewing 15 posts - 436 through 450 (of 488 total)
Brad is normally very good, but I think he got this one back to front. CHECKSUM checks every bit on the page and creates the checksum, written to the page...
May 20, 2010 at 4:43 pm
Personally since they broke it, I'd get the vendor in and tell them to fix it.
I'm also trying to work out how they managed to double up your data. Tables...
May 20, 2010 at 3:34 pm
sanketahir1985 (5/20/2010)
2010-05-20 14:57:42.770 spid6s SPID: 189 ECID: 0 Statement Type: TRUNCATE TABLE Line #: 240
.....
.....
2010-05-20 14:57:42.770 spid6s ...
May 20, 2010 at 3:12 pm
striker-baba (5/19/2010)
so that the user can get access to them and see from his login id.
If all you want is for them to see the meta-data, but not make changes...
May 19, 2010 at 10:04 pm
Create a SQL Job that will cycle the error log on a regular basis. I typically recommend once a week, but you would need to see what gives you a...
May 19, 2010 at 5:43 pm
Leo.Miller (5/19/2010)
select 'EXEC sp_addrolemember ' +char(39) + db_name() + char(39)
+ ', ' + char(39) + name + char(39) from sys.sysusers
where uid > 4...
May 19, 2010 at 5:37 pm
You can use this as a base
select 'EXEC sp_addrolemember ' +char(39) + db_name() + char(39)
+ ', ' + char(39) + name + char(39) from sys.sysusers
where uid > 4 and...
May 19, 2010 at 5:33 pm
magasvs (5/19/2010)
There are no really rules about transaction log's sizing. It depends on too many factors.
True, but it is good to have something to baseline against, that's why it's...
May 19, 2010 at 5:17 pm
I agree with the others EXCEPT...
If you have created indexes that closely match those recommended in the DMVs SQL will clear the matching indexe information from the vews.
Leo
Striving to provide...
May 19, 2010 at 4:14 pm
Another reason to find what caused the log file to blow out to 50GB is that if it happens again it will mess up your log shipping. It's reasonable to...
May 19, 2010 at 4:06 pm
nikhil.desai1 (5/19/2010)
Hi,This transfer should be online.
What do you mean by the above?
You could just export the data to a file and then import it.
I've recently had to do this for...
May 19, 2010 at 3:07 pm
If you have a current backup of msdb you can try this:
Restore the backup under a different name - Mymsdb
stop the sql server and Agent services
rename the msdb files so...
May 18, 2010 at 10:08 pm
Krasavita (5/18/2010)
It happend yesterday, how long trace would keep what happend in past?
The default trace is limited to 20MB, but the last 5 trace files are kept. Hopefully there...
May 18, 2010 at 5:04 pm
If your application fails because of a SQL Error you need to fix the app. There should be (almost) no unhandled errors within the app, related to its SQL interaction,...
May 17, 2010 at 10:37 pm
You should know at least enough to install and configure these so they work, even on a cluster environmnet. Then you should be able to do basic things like export,...
May 17, 2010 at 9:23 pm
Viewing 15 posts - 436 through 450 (of 488 total)