Viewing 15 posts - 1 through 15 (of 15 total)
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...
June 22, 2010 at 8:00 am
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...
June 17, 2010 at 7:33 am
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...
June 17, 2010 at 7:30 am
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. ...
June 17, 2010 at 7:08 am
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...
June 11, 2010 at 2:32 pm
Ray K (6/3/2010)
nabidavid (6/3/2010)
select * from #NameList
where (ISNULL(@ByID, '') <> '' AND ISNULL(@BySpecID, '') <> '' AND ISNULL(@ByOfficeID, '') <> ''...
June 3, 2010 at 11:33 am
Am I misunderstanding you, or would this not work:
select * from #NameList
where (ISNULL(@ByID, '') <> '' AND ISNULL(@BySpecID, '') <> '' AND ISNULL(@ByOfficeID, '') <> '' AND Name like...
June 3, 2010 at 11:21 am
Jeff Moden (5/25/2010)
sunny.tjk (5/25/2010)
(1) It said "DELETE is a logged operation on a per row basis. This...
May 27, 2010 at 8:13 am
I was worried the title of the article would get me fired. 😉 It needs some explaining for the boss...
May 5, 2010 at 2:02 pm
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...
May 3, 2010 at 2:55 pm
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,...
May 3, 2010 at 2:50 pm
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,...
April 30, 2010 at 11:22 am
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...
April 30, 2010 at 11:12 am
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...
April 30, 2010 at 6:33 am
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...
April 26, 2010 at 6:52 am
Viewing 15 posts - 1 through 15 (of 15 total)