Forum Replies Created

Viewing 15 posts - 76 through 90 (of 1,183 total)

  • RE: SSIS packages becoming corrputed

    Silly question (maybe):

    Have you tried the export from the server itself? Another workstation with SSMS installed?

    ______________________________________________________________________

    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: Where can I find KPI gif images

    You have a bunch already. Go to the Character Map and explore the WingDings (and other) fonts.

    Start > All Prog > Accessories > Character Map

    ______________________________________________________________________

    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: Combine 2 unrelated queries into a single SP

    create two different datasets. 🙂

    ______________________________________________________________________

    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: Reports Based Off Stored Proc, Multivalue Parameters

    You're close. The parameters (when multiple are chosen) are passed to your procedure as a comma delimited list. You will need to split those out into a table of values...

    ______________________________________________________________________

    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: Specify multiple file extensions in maintenance cleanup task

    Why not just "try it" Set up a task to delete any *.* files and set it to run in 5 minutes, then see if it fails. :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: Possible to update ReportServer.Subscriptions table with a script? Problems when tried

    Yes, you can update those tables, but they are "fussy".

    Check out this article, it shows how to work around it. I'm fairly certain it works in 2008.

    http://www.sqlservercentral.com/articles/Development/2824/

    ______________________________________________________________________

    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 can I PIVOT TABLE Or CrossTab By Datetime?

    You may need to set the compatibility level of the current database to a higher value to enable this feature. See help for the SET COMPATIBILITY_LEVEL option of ALTER DATABASE.

    According...

    ______________________________________________________________________

    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: T-SQL to call the SQL Parse "function"

    GilaMonster (11/2/2012)


    Not even with SET NOEXEC ON?

    And THANKS a ton Gail! This got us on the right track at least. 🙂

    ______________________________________________________________________

    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: T-SQL to call the SQL Parse "function"

    Eugene Elutin (11/2/2012)


    Try this:

    DECLARE @sql VARCHAR(8000) = 'SELECT * FROM FROM sys.objects'

    SET @sql = 'SET NOEXEC ON;

    ' + @sql + '

    SET NOEXEC OFF;'

    BEGIN TRY

    EXEC (@SQL)

    END TRY

    BEGIN...

    ______________________________________________________________________

    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: T-SQL to call the SQL Parse "function"

    GilaMonster (11/2/2012)


    Not even with SET NOEXEC ON?

    That might be it.

    So how would I (or is it possible) to do this inside a procedure and capture the output.

    In other words, I...

    ______________________________________________________________________

    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: T-SQL to call the SQL Parse "function"

    Jeff Moden (11/1/2012)


    Jason Selburg (11/1/2012)


    Good idea dwain, but I do not want to/ can not execute the statements.

    I need only to check the syntax.

    Also, the syntax can be...

    ______________________________________________________________________

    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: T-SQL to call the SQL Parse "function"

    Good idea dwain, but I do not want to/ can not execute the statements.

    I need only to check the syntax.

    Also, the syntax can be any valid sql. So...

    ______________________________________________________________________

    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: T-SQL to call the SQL Parse "function"

    Ha Ha...I need to sloooooow down. I totally missed the two FROM's

    ______________________________________________________________________

    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: T-SQL to call the SQL Parse "function"

    Lowell (11/1/2012)


    I've played with this a couple of times, Jason; i've used it to chop a SQL statement into elements, so i could play with building my own formatter, and...

    ______________________________________________________________________

    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: New Supporting Index for a Stored Procedure

    Lee Crain (11/1/2012)


    So, the Optimizer will ignore all existing query plans in the cache and possibly implement a new one because it will be aware that a new index has...

    ______________________________________________________________________

    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 - 76 through 90 (of 1,183 total)