Viewing 15 posts - 346 through 360 (of 2,840 total)
Every company has its own way of handling security for developers. Some are very strict and other very lax. In our case it is very strict. Developers do not have...
September 5, 2011 at 9:16 am
insert into @temptab
Select 'Test1', col2, col3 from tableA a
where col7 = Some value
if (@@rowcount = 0)
insert into @temptab
Select 'Test1', tabcol2, Tabcol3 from tableB a
where tabcol7 = Some value
I am not...
September 2, 2011 at 9:45 am
You can just check for @@rowcount
That is after the first select (it is actually an insert into the temptable) do a
If @@rowcount = 0
do the next select
I think this...
September 2, 2011 at 9:34 am
Take a look at this thread. This could be the issue. you are facing.
September 2, 2011 at 9:14 am
I have not seen blocking caused by a select when doing uncommitted reads unless the other stored procs are doing something with the Schema like Gail mentioned. You can still...
September 2, 2011 at 9:07 am
They can just be normal users with no high privilege. For example the service account should be a least privileged user in the domain but that user is a SYSAdmin...
September 1, 2011 at 11:40 am
Cross post. Please do not reply here. Use this thread instead. http://www.sqlservercentral.com/Forums/Topic1168783-391-1.aspx
September 1, 2011 at 11:12 am
As per BOL xp_sendmail "Requires membership in the sysadmin fixed server role, but EXECUTE permissions can be granted to other users. However, for security reasons, we recommend that permissions for...
September 1, 2011 at 11:05 am
You should be able to figure out what kind of replication it is by looking at the scripts. Take a look at this blog. It might help you with identifying...
September 1, 2011 at 10:58 am
I am not sure what the issue is. What kind of replication? How are you initializing it?
September 1, 2011 at 10:24 am
Wish you the very best on your Move to Colorado
September 1, 2011 at 8:38 am
awp (9/1/2011)
September 1, 2011 at 7:09 am
If you have control over the front end, why would you even bother giving permission to individual table? You could make all access go through Stored procs and give rights...
September 1, 2011 at 6:54 am
With the details you have provided, the best way to do it would be to get rid of the cursor. Like you stated, it is taking way too much time...
August 31, 2011 at 11:24 am
It is a start. What I see are complications that can arise at a later point. What happens when a new table is added to the DB that has very...
August 31, 2011 at 7:56 am
Viewing 15 posts - 346 through 360 (of 2,840 total)