Forum Replies Created

Viewing 15 posts - 3,901 through 3,915 (of 19,560 total)

  • RE: I'm .NET Developer with 3 years of experience. Looking to change career to DBA. Advise please.

    GilaMonster (2/5/2014)


    MinhTuCSharper (2/5/2014)


    So beside .NET and SQL Server, what is the hot MS technical field out there that on high demand, I'm willing to learn whatever MS Technology to get...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: I'm .NET Developer with 3 years of experience. Looking to change career to DBA. Advise please.

    Koen Verbeeck (2/5/2014)


    Switching careers just for the money is usually not a good idea. You have to make sure you will actually like what you are going to do.

    Being a...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Today's Random Word!

    Kurt W. Zimmerman (2/5/2014)


    BWFC (2/5/2014)


    Kurt W. Zimmerman (2/5/2014)


    Ed Wagner (2/5/2014)


    BWFC (2/5/2014)


    SQLRNNR (2/4/2014)


    toke

    Draw

    Shoot

    Skeet

    Clay

    Pot

    hemp

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Advice Please - To Specialize or not to Specialize That is the Question

    There are plenty of top notch people that have specialized in various things with SQL server. Even with that, there is a lot to learn and plenty of effort...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Byte Me: Data Mining

    EXCELLENT cartoon.

    Love that cartoons are coming back to SSC.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Byte Me: Data Mining

    Gary Varga (2/5/2014)


    I like a good laugh and did enjoy this but mainly I am here for SQL Server knowledge and experience (both receiving and imparting).

    I hope that is not...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: getting substring of column data

    That would mean that you have other urls that do not fit the patterns you have provided. I couldn't tell you what is different not having much of a...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: getting substring of column data

    Not sure I fully understand your question.

    But if you mean replace everything after the ? with an empty string, then it wouldn't be very useful or efficient. You typically...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: getting substring of column data

    Of that small sample set, the following is throwing a curveball

    /trwmjh.asp?Info=m/Txnxt1AKNvdWkS

    The issue is the / that comes after the ?. Is this a valid url?

    In any case, this should...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: SSRS 2008 conditional formatting with multiple conditions

    Are you able to handle those NULL values in the query for the datasource for this report? Changing that NULL to a different value such as 0 is a...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: getting substring of column data

    You probably have some null values in the table. Or you have some urls that do not fit that pattern.

    Having a sample set of data would have helped to...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: getting substring of column data

    Well this should work for you

    DECLARE @blah TABLE (someblah VARCHAR(256))

    INSERT INTO @blah

    VALUES ('http://www.xyz.com/region/department.asp?FID=8907')

    SELECT REVERSE(SUBSTRING(REVERSE(someblah),CHARINDEX('?',REVERSE(someblah),1)+1

    ,CHARINDEX('/',REVERSE(someblah))-CHARINDEX('?',REVERSE(someblah),1)-1))

    FROM @blah

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Help with date in sQL

    Can you provide a little more information such as the table structure and 20 or so sample records for this table?

    Having this kind of information is extremely helpful in being...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: getting substring of column data

    Do all of these URLs have the ? following the asp? Or do you have different page extensions too such as htm html asp etc?

    That information will play into...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Access 2010 and MS SQL Server 08 r2

    That would pretty much be it. That is a fairly basic overview of it - but I think you are getting the gist.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

Viewing 15 posts - 3,901 through 3,915 (of 19,560 total)