Viewing 15 posts - 166 through 180 (of 659 total)
Lynn
the batch processing trick worked well with me and asavd lot of time. thank you. From your query does the @@rowcount gives the number records updated, do u think if...
February 2, 2009 at 9:03 am
Thanks .
when running this query does the transaction log will be free for every 100,000 recrods? I am just trying to get how this will improve performace when compared to...
January 30, 2009 at 12:13 pm
here is the query that updates 90million records
update dbo.Rev
set planid = cast(rate.state as varchar(2))
from dbo.Rev as a left join STATE_LOOKUP_STATE5.dbo.ratefieldlookup as rate on a.revcode = rate.rev and
ltrim(rtrim(a.hmrevid)) = rate.hmrevid and...
January 30, 2009 at 10:58 am
If i have 90million records can that be updated in some bathces so that other process can also run and transaction log will not grow. if i have a table...
January 30, 2009 at 10:41 am
disable? do you mean disableing the windows login or is in sql server at server level to disable it.
January 29, 2009 at 5:49 pm
Here is my idea.
1. find out objects,schemas etc owned by user1
2. change ownership to my name
3.delete the account
can this process make the process run good after deleting. I am concerened...
January 29, 2009 at 5:25 pm
Cannot add rows to sysdepends for the current object because it depends on the missing object 'sp_hexadecimal'. The object will still be created.
Cannot add rows to sysdepends for the current...
January 29, 2009 at 2:32 pm
Brain
I have a question on your post. If EXECUTE AS can be used to run a store proc where a developer dont have rights to do, then doies it mean...
January 28, 2009 at 2:26 pm
Brain
could you let me know how that can be modified in this query
January 28, 2009 at 8:17 am
I was just wondering if i can use database mirroring in this scenario.
January 27, 2009 at 3:59 pm
That User is windows account associated with the windows group. I gave access to the group so that they can exec store proc.
January 27, 2009 at 3:52 pm
Yes, I just gave permission to to those tables and EXEC to the proc. Can you pls let me know what permissions they need to run this rebuild job.
January 27, 2009 at 2:33 pm
Here is the exact error mesg.
Executed as user: StatePA\PZarah. Cannot find the object "dbo.Rev2001" because it does not exist or you do not have permissions. [SQLSTATE 42000] (Error 1088). ...
January 27, 2009 at 1:54 pm
Viewing 15 posts - 166 through 180 (of 659 total)