Viewing 15 posts - 436 through 450 (of 493 total)
sanketahir1985 (5/21/2010)
actually SP_ClientBPS runs after every 5 sec. thru console program
while Sp_IEActiveScreen gets fired randomly by users avg freq is 5-10 hits per...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
May 23, 2010 at 4:29 pm
You can just genereate the commands for each database by running this in master. Then run the output in master. Just replace UserName with the name in the database. If...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
May 20, 2010 at 7:24 pm
Correct, dropping a login doesn't remove the user from the database. You need to go through each database and find all the orphaned users and drop them at the database...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
May 20, 2010 at 6:09 pm
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...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
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...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
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 ...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
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...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
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...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
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...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
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...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
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...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
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...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
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...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
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...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
May 19, 2010 at 3:07 pm
Viewing 15 posts - 436 through 450 (of 493 total)