Forum Replies Created

Viewing 15 posts - 346 through 360 (of 2,840 total)

  • RE: Security for the Dev Team

    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...

  • RE: if NULL ? ??

    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...

  • RE: if NULL ? ??

    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...

  • RE: SP_who/SP_who2 hangs

    Take a look at this thread. This could be the issue. you are facing.

  • RE: read uncomitted doesn't work

    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...

  • RE: sql server administrative privileged account

    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...

  • RE: replication issue

    Cross post. Please do not reply here. Use this thread instead. http://www.sqlservercentral.com/Forums/Topic1168783-391-1.aspx

  • RE: sql server administrative privileged account

    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...

  • RE: replication issu es

    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...

  • RE: replication issu es

    I am not sure what the issue is. What kind of replication? How are you initializing it?

  • RE: Are the posted questions getting worse?

    Wish you the very best on your Move to Colorado

  • RE: schema and security

    awp (9/1/2011)


    the web application contains fair amount of controls as you suggested, but I guess having a control on the DB gives additional security, for example, in the case of...

  • RE: schema and security

    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...

  • RE: Performance issues (timeout expired)

    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...

  • RE: schema and security

    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...

Viewing 15 posts - 346 through 360 (of 2,840 total)