Forum Replies Created

Viewing 15 posts - 45,076 through 45,090 (of 49,571 total)

  • RE: Index Question

    Mark Beringer (8/14/2008)


    After testing the STATISTICS IO & TIME I have found that the Clustered Index Scan has more reads but took less time to execute then the Index Seek.

    The...

  • RE: Strange DBCC CHECKDB error

    That's refering to the allocation pages (GAM, SGAM, PFS). They're not actually objects, but they say which pages in the files are used, available and how much space on them....

  • RE: New SQL Server Injection Attack????

    bcronce (8/14/2008)


    Last timeI created a web app, there was a procedure to test to see if incoming data was valid SQL and if so, to throw an exception. How does...

  • RE: Index Question

    Mark Beringer (8/14/2008)


    Thanks for your help, I will check the tme and reads! 🙂

    STATISTICS IO

    and

    STATISTICS TIME

    are the best for this. (both SET options)

  • RE: dynamic sql syntax automatic restore

    Please don't cross post. It just wastes people's time and fragments replies. Many of us read all the forums.

    No replies to this thread please. Direct replies to:

    http://www.sqlservercentral.com/Forums/Topic552520-146-1.aspx

  • RE: Index Question

    My guess, there are too many rows returned for the index seek + bookmark lookup to be efficient, so unless the index is covering, SQL elects to scan the cluster.

    Check...

  • RE: Alter Table Add Constraint Returns bizarre error

    Brandie Tarvin (8/14/2008)


    They need a better priority system than alphabetical. They need to be able to let you choose an option on how to set what default comes up....

  • RE: Min/Max Server Memory

    bodhilove (8/14/2008)


    why is the max set so high as a default (2147483647 MB)? If I am getting paging problem would that be because this is too high?

    The default basically means...

  • RE: Permission Issue

    Ratheesh.K.Nair (8/14/2008)


    The application is showing disk full error.

    That's not a permission-related error. If you could post the exact error message, we could probably tell you whether or not it's a...

  • RE: Trigger to fire after multiple update statements

    Depends on your table structure and what and who you need to mail. Put into the temp table enough info that you can then identify which salaries you updated for...

  • RE: SQL 2005 SERVER GENERATES HUGE BROADCAST

    vrijesh prajapati (8/14/2008)


    HI, SQL 2005 DATABSE(SP4) SERVER IS GENERATING HUGE BROADCAST & OUR ROUTERS WERE GETTING HANGED.

    First thing, please double check your version. SQL Server 2000 is up to service...

  • RE: Separate Login for a query in a stored procedure

    bhuvnesh.dogra (8/14/2008)


    If i add domain\sqlman as remote login it gies below error:

    Executed as user: DOMAIN\SQLMan. Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'. [SQLSTATE 28000] (Error 18456). The step...

  • RE: Trigger to fire after multiple update statements

    Perhaps write a stored procedure, keep track of the employees that you've updated in a temp table and then send the mail at the end of the procedure.

  • RE: Permission Issue

    It would help if you said what error they were getting.

  • RE: how to update.

    Sure. Untested, but this should give you an idea.

    UPDATE SomeTable

    SET RMFP = CASE uid WHEN 1 THEN 15 WHEN 7 THEN 18 WHEN 8 THEN 19 ELSE 0...

Viewing 15 posts - 45,076 through 45,090 (of 49,571 total)