Forum Replies Created

Viewing 15 posts - 1 through 15 (of 15 total)

  • RE: MS Reporting Services 2005 - update underlying data source?

    The only real option built in to Reporting Services would be using a report parameter that is passed to a stored procedure that returns the report results as well as...

  • RE: Send Report Email only if data exists

    AVB (6/17/2010)


    It appears that data-driven subscriptions are only available for the Enterprise version. I am running 2000 Standard.

    Oh... and my bad for forgetting to mention in the first place...

  • RE: Send Report Email only if data exists

    When you create a subscription, a matching SQL Agent Job is created, named with the GUID of the subscription. I do not have access to SQL Server 2000 Reporting...

  • RE: Send Report Email only if data exists

    You will need to use a data-driven subscription. If the query for the instructions for the data-drive subscription does not return a row, no report will be sent. ...

  • RE: Memory leakage

    If you are referring to "memory leaks" in a SQL Server instance, SQL Server will acquire system memory over time, but it will not release the memory unless requested by...

  • RE: Trying to optimize a WHERE clause

    Ray K (6/3/2010)


    nabidavid (6/3/2010)


    Am I misunderstanding you, or would this not work:

    select * from #NameList

    where (ISNULL(@ByID, '') <> '' AND ISNULL(@BySpecID, '') <> '' AND ISNULL(@ByOfficeID, '') <> ''...

  • RE: Trying to optimize a WHERE clause

    Am I misunderstanding you, or would this not work:

    select * from #NameList

    where (ISNULL(@ByID, '') <> '' AND ISNULL(@BySpecID, '') <> '' AND ISNULL(@ByOfficeID, '') <> '' AND Name like...

  • RE: Delete Vs Truncate

    Jeff Moden (5/25/2010)


    sunny.tjk (5/25/2010)


    I read an article on the difference between delete and truncate operation.

    (1) It said "DELETE is a logged operation on a per row basis. This...

  • RE: Finding Jobs

    I was worried the title of the article would get me fired. 😉 It needs some explaining for the boss...

  • RE: Will SQL Server 2000 run on Win Server 2008 R2?

    I looked at the Advisor download page, but it doesn't go into details about how it gathers data. Is it a static inspection of the DB and the code stored...

  • RE: Will SQL Server 2000 run on Win Server 2008 R2?

    Yes, you are correct. I meant Non-Ansi style joins. 😉

    In the recent upgrade at our organization, we actually had a few of these JOINs. A few years ago,...

  • RE: The value of variable is disappearing in stored procedure

    Is it possible that the statement retrieving the value from the table does not actually return a row..? This would make the variable NULL.

    As the other posts have said,...

  • RE: Would You Like a Stay Interview?

    As many have said, I think the real answer to that question is based highly on the level of integrity of whomever gives the interview. As the employee being...

  • RE: Will SQL Server 2000 run on Win Server 2008 R2?

    Actually, the amount of T-SQL to update will depend greatly on how close the development team followed best practices. My organization recently upgraded from SQL 2000 to SQL 2008...

  • RE: Optimising Server-Side Paging - Part I

    Great article, Paul. I look forward to Part II. 😀

    If you are not already covering it in a future article, I am curious if you have any advice...

Viewing 15 posts - 1 through 15 (of 15 total)