Forum Replies Created

Viewing 15 posts - 54,601 through 54,615 (of 59,067 total)

  • RE: Bulk Insert

    Could be any of a dozen different problems... you need to post the code you're using and the CREATE statement for the table you are importing to.

  • RE: Actual Reason to Use CLR

    Grant, I'm with you... I see no compelling reason for CLR's. My opinion, for the most part, for them being there is the same as DTS and Cursors... they...

  • RE: Unstring text field?

    The easiest way to split limited (up to 4 parts) period-delimited text of this nature is to use PARSENAME. Look it up in Books Online for a full explanation.

    Here's...

  • RE: query statistics

    This is very nearly a duplicate post...

    http://www.sqlservercentral.com/Forums/Topic410280-65-1.aspx

    The only thing that means anything about performance for all the timers you have here is this...

    Number of TDS packets received 28569 28569

    Number of...

  • RE: Execution plan

    That information is available in Books Online ("Transact-SQL Help" under Help button in Query Analyzer). Lookup "Execution Plan pane" in the index...

  • RE: statistics time on

    If you're asking how long we think it should take for you to process the 1.7 million rows that your are... we have no clue because we don't know what...

  • RE: SQL Code

    SELECT *

    FROM yourtable

    WHERE Address1 LIKE '[0-9]%'

  • RE: Delete Temp Table within a Cursor

    You could have also used TRUNCATE table which resets the ID column back to 1.

    But, even that doesn't "Fix" it... why are you using a cursor? Perhaps if you...

  • RE: NEWID() structure

    NEWID() won't guarantee it... it's only guaranteed at the full 32 characters.

    What's wrong with this?

    SELECT CAST(CAST(0x0013020061675035 AS BIGINT)+1 AS VARBINARY)

    If you find the largest item in the column, just add...

  • RE: Determine field names of stored proc return

    I only see the column names being returned... no data types...

  • RE: Extracting Text From varbinary(max) field

    Notice, the answer above was almost as short and useful as the question... if you want a real answer, could you provide just a wee bit more info about what...

  • RE: Extracting Text From varbinary(max) field

    Absolutely... 😉

  • RE: Seperate digits

    If you want something slick to split addresses and validate them at the same time, look into a product called "ZP4".

  • RE: Are #temptables unique?

    Christopher Klein (10/12/2007)


    Just a pre-coffee question but are tables defined as #temp unique to a particular instance of being called?

    Say I have a stored procedure that builds up a #temp...

  • RE: Unstring text field?

    What datatype is the column, really? Is it TEXT, VARCHAR, NVARCHAR, or ???

Viewing 15 posts - 54,601 through 54,615 (of 59,067 total)