Viewing 15 posts - 256 through 270 (of 609 total)
I have a stored proc to do that but how does it get executed as and when there is a new database?
September 8, 2010 at 12:26 pm
can we create a group in sql server like windows?
August 27, 2010 at 6:08 pm
Actually i am looking for a simple method to give read access to a group of users by default on a server to all databases. I know if i can...
August 26, 2010 at 10:47 am
Peters i has the same issue and looking for a solution. I restored another msdb database of matching collation and deleted everything in there and trying to move all jobs...
August 23, 2010 at 5:19 pm
all pkgs are saved in msdb and i am looking for an easy way to move them to another server.
August 23, 2010 at 7:04 am
I am trying to alter "msdb" database but i dont think it will allow to do for system databases and so how would i restore msdb with differnt collation?
August 21, 2010 at 8:46 am
How can i use different collation while restoring a database?
August 20, 2010 at 9:52 pm
How would be the performance if i do ROW and PAGE compression both on a database including indexes, is it preferable?
Here is my understanding, though i do PAGE compression it...
August 20, 2010 at 7:01 am
Looks like it didnt backup the empty space of around 200gb but when i restored again oin different server even the empty space was restored. So i am shrinking on...
August 18, 2010 at 7:40 am
I want to use compression on the whole database, which one would be better ROW or PAGE compression?
August 16, 2010 at 10:42 am
How about this..
DECLARE @rowcount int
SET @rowcount = 100000
SET rowcount 100000
WHILE @rowcount >0
BEGIN
BEGIN TRAN
Update dbo.Employee set jobcode = 1 Where jobcode <> 1
SET @rowcount = @@rowcount
...
August 10, 2010 at 6:54 am
I see the problem now, there is no check for already updated rows in the loop and so it is an indefinite loop.
so how would i check the updated rows...
August 6, 2010 at 10:32 am
revno column has unique records (28) in OBBEAVER.USPA_check.dbo.RevID
fixpaid column in dbo.Adm_History2 has all "0" as of now.
could you tell how would i update them in batches without having indefinite...
August 6, 2010 at 9:48 am
Viewing 15 posts - 256 through 270 (of 609 total)