Forum Replies Created

Viewing 15 posts - 1,066 through 1,080 (of 1,183 total)

  • RE: INSERT using EXEC problem

    No indexes or triggers on target table.

    Recovery model is Simple and I've tried with recovery model of bulk-logged with no change.

    I'm not sure if tempDB or the DB running the...

    ______________________________________________________________________

    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: Procedure expects parameter which was not supplied...?

    UNTESTED!!!!!

    But at first glance, isn't this the correct syntax?

    aReturnKeyPrm.Direction = ParameterDirection.Output;

    ______________________________________________________________________

    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 aggregate this table?

    This also works....

    SELECT

    IndicatorName, DHBName, PHOName, PracticeName,

    Numerator, Denominator,

    sum(Numerator) OVER (PARTITION BY IndicatorName, DHBName) as DHBnumTotal,

    ...

    ______________________________________________________________________

    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: Manipulating data in SQL2K using T-SQL2K5

    You can also add the 2000 server as a linked server on one of your 2005 databases. This would give you the ability to use the 2005 features on the...

    ______________________________________________________________________

    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: Reporting services problem

    What I was referring to is how are the emails being opened? Any report attachment that we send out will be fine if opened through the Outlook application, but if...

    ______________________________________________________________________

    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: Advice on going from 2005-2000 reports

    I'm pretty sure that the only things you need to do in the RDL files is...

    - change the namespace.

    - delete the entries for interactive width and interactive height.

    I've had 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: Help i''''ve lost my function

    In SQL 2000 it's under user defined functions. In 2005 it's under Programmability > Table-valued functions.

    This is all provided that your login has execute permissions on the function. If 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: Help i''''ve lost my function

    You need to define the owner during the execution.

    select dbo.split(name) from table

    And actually since this is a Table-valued function, you need it to be in the FROM part of the...

    ______________________________________________________________________

    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: User cannot Enter eMail address for Subscription

    I believe this has been addressed in RS 2005 with the addition of the "Manage all subscriptions" option in role settings, but I'm not positive.

    ~~Sorry~~

    ______________________________________________________________________

    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: Reporting services problem

    Are you experiencing the problem through the web exchange interface, outlook or both?

    Have you tried sending the report to a hotmail or other type of email service?

    ______________________________________________________________________

    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: Moving reports from 2005 - 2000

    That is not an easy task at all. If you can log into the 2005 report server and then "Edit" each report's definition, then you can save those report (rdl)...

    ______________________________________________________________________

    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 Subscription and the From address

    This can not be set on a per-report/subscription level. You are correct, it can only be set server level.

    ______________________________________________________________________

    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: Debugging Stored Procedures

    With Visual Studio 2005 you can step through stored procedure execution. I've not done this, but I know you can.

    ______________________________________________________________________

    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: Help with a SQL query tunning

    I read somewhere that it would be faster. I've never tested it though....

    I'll have to look into that today. ----

     

    I tested on a table with 1.5mil rows and it seems...

    ______________________________________________________________________

    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: Help with a SQL query tunning

    Change the Count(*) to Count(1)

    ______________________________________________________________________

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