Forum Replies Created

Viewing 15 posts - 3,061 through 3,075 (of 6,401 total)

  • RE: how to know Graphical Execution Plans works through xmlcode in sql server?

    The XML name space in the XML is <ShowPlanXML xmlns="http://schemas.microsoft.com/sqlserver/2004/07/showplan".....> so it knows that its a query plan and then opens it in the correct format

  • RE: install sql on veritas cluster

    No offence but have you done a search on the topic?

    First link I got after google'ing "install sql server 2008 on veritas cluster" seems to detail all the steps nessesary.

  • RE: DATA base inaccesible

    Always remember the clue is usually in the error message.

  • RE: sql server SSL ??

    Translated to English

    e can issue a certificate which will match the requirements of SQL SERVER 2012

    The certificate must be in the local computer certificate store or the current user.

    Current system...

  • RE: DATA base inaccesible

    got enough free disk space

    got enough free ram

    server might be under extreme memory

    I would recommend reading chapter 4 of the Accidental DBA Guide on Memory Usage

  • RE: How to archive a database

    Why not just drop the database after you have backed it up?

  • RE: awe enable?

    Set Max memory at 26GB or there abouts, leaves enough for the OS to manage itself OK.

    If its dedicated I wouldnt worry about min memory so much as only SQL...

  • RE: awe enable?

    Server 2003 32bit Enterprise RAM limit = 32GB

    Min Max memory should be set to something reasonable, is this a dedicated server just for SQL or will other apps be running...

  • RE: How to load one million records into excel using ssis

    Do you have to export to excel? Can you not export to another format, CSV, txt etc?

    If it has to be xlsx then you will need to export 1...

  • RE: Update trigger without primary key

    Adi Cohn-120898 (12/19/2012)


    anthony.green (12/19/2012)


    @@RowCount only looks at the last statement which in this case would be the DECLARE which will always return 0 rows

    Use COUNT(*) from the INSERTED table instead.

    But...

  • RE: Update trigger without primary key

    And which update statement within the trigger?

  • RE: Update trigger without primary key

    @@RowCount only looks at the last statement which in this case would be the DECLARE which will always return 0 rows

    Use COUNT(*) from the INSERTED table instead.

    But if the trigger...

  • RE: Date format

    You want to modify the output to one which doesnt happen when you convert a date so you have to manually tell it the format which is why you need...

  • RE: Date format

    SELECT '(Expires '+RTRIM(DATENAME(MM, GETDATE()) +','+ RIGHT(CONVERT(VARCHAR(12), GETDATE() ,107),9))+ ')'

    Gives

    (Expires December, 19, 2012)

  • RE: please help me tunnig part of below query?

    Welcome to SCC

    Can you please follow the links in my signature to posting, code and data for the best help and also the how to post performance problems so that...

Viewing 15 posts - 3,061 through 3,075 (of 6,401 total)