Forum Replies Created

Viewing 15 posts - 451 through 465 (of 1,183 total)

  • RE: Exporting tables & stored procedures

    One option is .... Look at Red Gates' SQL Packager.

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Non sargable mightmare

    I know I'm commenting late, but at least OleHank titled the post appropriately.

    I do not envy your position. :w00t:

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Select just three octets from IP number

    DECLARE @t VARCHAR(15)

    SET @t = '111.222.333.444'

    SELECT PARSENAME(@t,4),PARSENAME(@t,3),PARSENAME(@t,2)

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: INFORMATION_SCHEMA.COLUMNS <> Table Definition

    Mani Singh (6/23/2008)


    did you check filter by table_schema in information_Schema.columns.

    That's where it said FLOAT.

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: INFORMATION_SCHEMA.COLUMNS <> Table Definition

    GOT IT.

    Changed the datatype from VARCHAR(7) to VARCHAR(8) and back again.

    But still unsure how this could happen?

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Forum Etiquette: How to post data/code on a forum to get the best help

    Place it between the code blocks. Look to the left in the "Post Reply" screen.

    another explination is to start your code with an

    open bracket+the word CODE+a close bracket

    [.code.] ...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Switch two record's sequences

    We need a bit more info to help you. 🙂

    Read this article and re-post.

    http://www.sqlservercentral.com/articles/Best+Practices/61537/

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Minipulating data strings

    Without address a "Why" a direct answer to your question is ...

    DECLARE @t TABLE (codeValue VARCHAR(256))

    INSERT @t

    SELECT '6,16,26,35' UNION ALL

    SELECT...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Date Parameter

    Read up on COALESCE in BOL.

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: How do I convert an ip address (stored in a column) to a decimal

    Or you could take advantage of the fact that an IP address just happens to have four parts just like a fully qualified SQL object name and use PARSENAME. 😀

    SELECT...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Suggested Approaches Appreciated

    😛

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Suggested Approaches Appreciated

    Not so far!

    $#&&@%....! ... Jeff, you just had to bring that up didn't you!

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Suggested Approaches Appreciated

    Michael Earl (6/18/2008)


    So you need to change the design AND upgrade your server...

    Is this a one-time update, something you intend to do regularly in batch, or something you need to...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Suggested Approaches Appreciated

    Matt,

    Thanks for the suggestion, but I left out one VERY important point. This needs to work on 2000 as well. I probably should have posted in that forum :hehe:

    Anywho, I'm...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Suggested Approaches Appreciated

    Nice. I'll give it a whirl.

    Any more takers out there?

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg

Viewing 15 posts - 451 through 465 (of 1,183 total)