Forum Replies Created

Viewing 15 posts - 9,076 through 9,090 (of 19,560 total)

  • RE: Recursive help needed

    I'm not sure what you mean.

    Post a sample of how you expect to see it displayed

    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: Exam 70-450

    I think it is significantly more difficult. I recommend using the published information from Microsoft about what to study.

    This is a bit of a study guide I put together...

    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: How can I email myself a list of databases on my server?

    Yup, all of those are viable options as well.

    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: Recursive help needed

    You have your join criteria backwards.

    Try this.

    With CatList (Child, Parent,IDNo, ParentIDNo, Clearance) as

    (Select ChildCategory, Category, IDNo, ParentIDNo,Clearance

    From Category

    where parentidno is null

    Union All

    Select Cat.ChildCategory, Cat.Category, Cat.IDNo, Cat.ParentIDNo ,Cat.Clearance

    From Category...

    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: How can I email myself a list of databases on my server?

    Here are two options to do that:

    --option 1

    EXEC msdb.dbo.sp_send_dbmail

    @profile_name = 'SQLDBA' ,

    @recipients = 'myEmail@myDomain.com' ,

    --@body = @messageBody ,

    ...

    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: DTS Packages migration

    Besides Elliotts slick tool, you can do this easily from msdb database to msdb database via sql script and a dts transfer.

    Here would be the first part of that method.

    SELECT...

    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: DTS Packages migration

    Are they all stored in MSDB or the file system?

    Also, I am curious why stay with SQL 2000?

    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: Are the posted questions getting worse?

    Stefan Krzywicki (8/12/2011)


    SQLRNNR (8/12/2011)


    Stefan Krzywicki (8/12/2011)


    SQLRNNR (8/12/2011)


    Stefan Krzywicki (8/12/2011)


    SQLRNNR (8/12/2011)


    Lynn Pettis (8/11/2011)


    WayneS (8/11/2011)


    Lynn Pettis (8/11/2011)


    ...

    Lynn, I'm very glad that you are moving back. I know you've been a bit unhappy...

    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: Are the posted questions getting worse?

    Stefan Krzywicki (8/12/2011)


    SQLRNNR (8/12/2011)


    Stefan Krzywicki (8/12/2011)


    SQLRNNR (8/12/2011)


    Lynn Pettis (8/11/2011)


    WayneS (8/11/2011)


    Lynn Pettis (8/11/2011)


    ...

    Lynn, I'm very glad that you are moving back. I know you've been a bit unhappy there (what with...

    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: Pliz help this stroed procedure!!

    It would appear to me that prior to using 10000, you have been lucky that there are no duplicate values.

    set @nom=(select nom from dbo.mylogin1 where numtel=@numtel)

    set @prenom=(select prenom from dbo.mylogin1...

    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: need help with regex excluding .txt extension in for each loop

    I have done this using a script component as well as a stored proc that utilizes xp_cmdshell. Both can easily be used in SSIS to populate your object prior...

    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: Non-Latin characters showing up as ????? in nvarchar column

    When writing it out to text file, I believe you need to use UTF-16.

    As for SSMS, I ran into that issue once upon a time and am trying to recall...

    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!

    Ray K (8/12/2011)


    crookj (8/12/2011)


    Ray K (8/12/2011)


    crookj (8/12/2011)


    SQLRNNR (8/12/2011)


    Revenant (8/12/2011)


    SQLRNNR (8/12/2011)


    Strengthed

    Conan

    Barbarian

    Red Sonja

    Red Dawn

    Wolverines!!!!!!!

    Buckeyes

    Cheaters?

    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: Are the posted questions getting worse?

    Stefan Krzywicki (8/12/2011)


    SQLRNNR (8/12/2011)


    Lynn Pettis (8/11/2011)


    WayneS (8/11/2011)


    Lynn Pettis (8/11/2011)


    ...

    Lynn, I'm very glad that you are moving back. I know you've been a bit unhappy there (what with being so close...

    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: Are the posted questions getting worse?

    Steve Jones - SSC Editor (8/12/2011)


    Is anyone here working with, or struggling to

    - work in a complex development environment that does automated builds at high volumes (> 1x day)

    -...

    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 - 9,076 through 9,090 (of 19,560 total)