Forum Replies Created

Viewing 15 posts - 2,971 through 2,985 (of 3,232 total)

  • RE: sql date question

    SELECT *

    FROM Table1

     INNER JOIN Table2

     ON Table1.Date = Table2.Date

    WHERE CONVERT(varchar(10), Table1.Date, 101) = '03/24/2006'

    John Rowan

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

  • RE: Evaluate a formula

    You would need to do it as part of the insert.  I don't know of a way for an update statement to work as SQL Server will have difficulty converting...

    John Rowan

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

  • RE: Problem Insert Statement

    Take the double quotes off of "| GSL Account Search".  Use single quotes.  Also, you have multiple stray commas in your insert statements.  If you include the column name in...

    John Rowan

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

  • RE: Backups On Shared Drive

    You may want to consider keeping you backups local and then setting up another process to copy them off to your network repository.  This, in my opinion, would be better...

    John Rowan

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

  • RE: DTS SCHEDULING TIME and DTS for Update

    You cannot schedule a job to run more often than 1 minute.  What are you trying to do that needs done every 3 seconds?

    What is the error message that you...

    John Rowan

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

  • RE: How to begin Performance Monitoring

    You usually want to start your performance monitoring at a high level using only the basic counters for monitoring CPU, Disk I/O, and Memory.  If you find out that either...

    John Rowan

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

  • RE: How to check whether storage drives are active?

    If your drives become unavailable or full, SQL Server will mark your database as suspect, so if your database is available, the drives that hold your database files are also available. ...

    John Rowan

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

  • RE: Automated DTS Package Job

    Go into the SQL Agent>>Jobs view and look at the job properties.  Who is set as the owner?  Whomever it is needs to have permissions on your development server, so...

    John Rowan

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

  • RE: Recovering Transaction Logs

    I do not know how you could accomplish this with a standard t-sql script.  I would say that you either need to create a vb script to check in your...

    John Rowan

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

  • RE: Problem connecting to server

    Is there a reason why you cannot just use the host name?

    John Rowan

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

  • RE: Problem connecting to server

    What are you trying to connect with, EM, QA, ODBC?  Are you getting any sort of message back?  Can you ping the IP?

    John Rowan

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

  • RE: Instead of Cursors

    From an optimization standpoint, you may get better performance from your while loop due to the overhead that a cursor adds when allocating/deallocating, but then again, you may not.  I...

    John Rowan

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

  • RE: Please help with cursorless cursor

    The only way you will be able to significantly reduce the amount of time this takes is to re-engineer this SP to get away from row-by-row processing.  Removing the cursor...

    John Rowan

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

  • RE: Data transfer betweenm two sql servers

    Depending on how many tables you are talking about and how complex the data, I would look into creating a DTS package that can do your data pump and schedule...

    John Rowan

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

  • RE: Data transfer betweenm two sql servers

    How often, every day, every hour, real time?  How much data? Can you give a more detailed description of what you want to accomplish?

    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,971 through 2,985 (of 3,232 total)