Forum Replies Created

Viewing 15 posts - 2,551 through 2,565 (of 3,232 total)

  • RE: I/O Separation

    Colin,

    You stated that :

    "If you split tempdb off make sure it has the same number of physical spindles available as it did on the data array otherwise you introduce...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Tracking down re-compiles

    How much of your total SQL load is contained within stored procedures?

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Sql 2000 Calls slow over E1 link

    If you are not seeing resource contention on the database server and response times for your LAN users is fine, this is not a database issue.  Just because the...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: SQL Enterprise Edition only using 2G of RAM

    Did you enable AWE?  Did you set the /PAE and /3GB switches in the boot.ini file?  Does the windows account that SQL Server is running under have the 'Lock pages...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: @@rowcount assignment

    In addition to what Sergiy stated, SQL Server 2000 does not allow you to use a variable value for the number of rows returned by TOP.  Look up 'SET ROWCOUNT'...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Easy question---Index defrag timeout

    Right, DBCC INDEXDEFRAG must lock portions of the table in order to defrag the index.  If you use a tablock hint, you are locking the entire table, thereby preventing DBCC...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Easy question---Index defrag timeout

    An index defrag is an online opperation so I'm curious as to where the timeout is comming from.  How long does it run before you get a timeout?  An index...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Automating a DTS Package

    Well, the method for automating a DTS package usually consist of making it into a scheduled job and letting SQL Agent kick it off for you.  I cannot see how...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Table Column as Variable

    What query are you using to get the column name?

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Memory Configuration ! Have I got it wrong ? Pls HELP ! Urgent

    John,

    Cory is correct.  If you have 7 GB of memory in your server, your Max Server Memory setting should be no higher than 6 GB.  If your server is...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: DTS - import from CSV problems - "comma space" delimited

    You can try to change the Transformations in the data pump to use an ActiveX script.  You can then TRIM the first space off in the ActiveX script.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: PAE / AWE / and Page File ! Configuration Problems

    As David suggests, this topic is a cross post from :

    http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=146&messageid=319313#bm319459

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Memory Configuration ! Have I got it wrong ? Pls HELP ! Urgent

    John,

    David is correct in regards to adding the /PAE switch.  This may be contributing to what you are seeing in terms of your paging file usage.  I do disagree;...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: How to replace text within a string using wild cards

    Am I missing something here, your post title says something about using wildcards?  Anyway, look up REPLACE in BOL. 

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: return 1 row only with union all

    I would recommend using an ORDER BY clause if you want your query to return the same TOP 1 each time it is run.  The only...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

Viewing 15 posts - 2,551 through 2,565 (of 3,232 total)