Forum Replies Created

Viewing 15 posts - 1,126 through 1,140 (of 1,183 total)

  • RE: jump to url with view state object information?

    Type this in the jump to url field...

    ="http://sever99/folder1/page1.aspx?profitCenter=100&department=" & field!department.value

    and that should do it.

    ______________________________________________________________________

    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: The report parameter has a default value that depends on the report parameter.Forward dependencies are not valid

    1. Use the query to get the available fiscal dates for your parameter.

    2. Combine the other two queries into one

    ----------------

    declare @startdate datetime, @enddate datetime

    SELECT @startDate = FiscalStartDate, @endDate = FiscalEndDate

    FROM...

    ______________________________________________________________________

    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: Join Question

    Wouldn't this work as well, and more efficient?

    SELECT

    a.ServerName

    FROM

    tableA a

    LEFT JOIN tableb b...

    ______________________________________________________________________

    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: Landscape report exported to PDF renders vertically

    Just a comment ....

    One other thing that I've noticed, and haven't found how to get around (and I doubt you can), is that the settings in the users Adobe Reader...

    ______________________________________________________________________

    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: Problems configuring Reporting Service (Express Edt.)

    My experience with Host Headers is this:

    As long as the Report Server Address in your .config files, the address you use in VS for the RS match the host header...

    ______________________________________________________________________

    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: Data Driven Subscriptions

    To address the wait time for the subscription to complete, make the following changes to the stored proc. This solution was devised by hughthomas -> http://www.sqlservercentral.com/forums/userinfo.aspx?id=86254

     

    Add the following lines...

    ______________________________________________________________________

    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: Multivalue (ALL) ,SQL 2005 Reporting Services

    What are the datatypes of your fields (ID and name)?

    ______________________________________________________________________

    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: Trouble with creating a view

    What is the error message you are getting?

    ______________________________________________________________________

    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: Multivalue (ALL) ,SQL 2005 Reporting Services

    Wouldn't this work?

     

    .....AND (field in (@parameter) or @parameter like '%All%' )

     

    ?

    ______________________________________________________________________

    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: Different colors in same text box

    I'll try to test this and get back to you asap.

    ______________________________________________________________________

    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: Different colors in same text box

    I'm not positive, but I'm pretty sure it's not possible within one text box.

    One possible solution is to use formula's to calculate the 'left' properties of your second and third...

    ______________________________________________________________________

    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: Export "Replaced" Text in DTS

    The second agument of replace is the replacement text.

     

    I think you want

    REPLACE( REPLACE( thecolumname, CHAR( 13 ) , '' ) , CHAR( 10) , '' ) AS TheString

    ______________________________________________________________________

    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: login failed for iser''''null'''' not associated with a tristed SQL Server connection

    This may be a stupid question, but do you have "Allow saving Password" selected?

    ______________________________________________________________________

    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: Recall variable

    Just a thought...

    create a table with the parameters as fields.

    have the report's parameters use the value from this table as defaults but not available values.

    have the dataset that is used...

    ______________________________________________________________________

    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 to See BackUp in Our DataBase??

    My understanding of your situation is that you have restored a backup and want to know where to see it?

    If this is correct, it is restored 'over' the database that...

    ______________________________________________________________________

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