Forum Replies Created

Viewing 15 posts - 196 through 210 (of 2,487 total)

  • RE: IP address retrieval

    Yes, not specifically for IP addresses, I use it to split up the text version of a performance counter name.

    Anyway back on topic, did we solve the OP's problem

    --------------------
    Colt 45 - the original point and click interface

  • RE: Stored procedure running slowly

    Adam

    Executing SET SHOWPLAN_TEXT ON will cause a text version of the execution plan to be generated. Just run it before your statement/procedure.

    --------------------
    Colt 45 - the original point and click interface

  • RE: XPSMTP

    Another option that avoids the sometimes, or maybe mosttimes, problems with SQL Mail is to build your own POP3 email reader. There are a number of examples at http://www.codeproject.com

    --------------------
    Colt 45 - the original point and click interface

  • RE: Insert 8 million records from text file to a table

    The BULK INSERT has a table lock option. No need to fiddle with table options which tend to be forgotten once set

    http://msdn2.microsoft.com/en-us/library/aa225968(SQL.80).aspx

    From the...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Clustered index on varchar column

    Ok, based on the query you provided a non-clustered index on card id won't help.

    For the way you're explaining the updates, this is how I see it,

    1) first return the...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Clustered index on varchar column

    My varchar column never changes

    So why have the CardID column at all?

    updates are done using the primary key but only after the cardid is acquired by its serial number

    Why not...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Clustered index on varchar column

    And the query you're using ...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Insert 8 million records from text file to a table

    BULK INSERT is the fastest option for importing data into SQL Server. It has most of the options that are available for BCP.

    --------------------
    Colt 45 - the original point and click interface

  • RE: Clustered index on varchar column

    faboudib

    I'd like to see the table structure and query before recommending that you have a clustered index on a varchar column.

    --------------------
    Colt 45 - the original point and click interface

  • RE: Change the date format

    Jeff

    No offense taken as I never thought there was offense meant

    --------------------
    Colt 45 - the original point and click interface

  • RE: Find TempDB Actual space occupied or used

    Jeff I thought you'd do the math a little better. It's ONLY 158GB

    What are you using to produce the numbers you've given us?...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Error while creating Publication.

    Error seems pretty self explanatory. What login are you using?

    How are you creating the publication? via the GUI or via script? If it's via script, can you supply the script?

    ...

    --------------------
    Colt 45 - the original point and click interface

  • RE: SQL 2000 - Performance suggestions

    BTW, DDL for table and indexes, along with query and text execution plan are most helpful in providing a complete picture

    --------------------
    Colt 45 - the original point and click interface

  • RE: SQL 2000 - Performance suggestions

    There are no technical limitations on the number of concurrent processes in the Developer edition. If the server is used in anyway by a "production" process, then there is license...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Rename a file on a remote server

    Kathy, are you using the standard FTP task that comes with DTS? I remember that ww.sqldts.com built an add-on task for FTP, can't remember it's full functionality, might be worth...

    --------------------
    Colt 45 - the original point and click interface

Viewing 15 posts - 196 through 210 (of 2,487 total)