Forum Replies Created

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

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

  • RE: How to find allocated space and used space

    don't remove the whole thing, just remove the spaces.

    the string of characters is special and they are removed from posts hence why I need to put spaces in so that...

  • RE: how to find name of a table which has maximum number of transactions for a large database

    I was always told to not trust the sys view as it can differ from what was in the table, that was back in SQL 2000 days so unsure if...

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