Viewing 15 posts - 736 through 750 (of 887 total)
SQL_Nw (11/16/2011)
I added defaults for @report_start and @report_end as for yesterday 24 hours 00:00 to 23:59, but even If i schedule it every 8 hours, the...
November 16, 2011 at 7:30 am
This is probably happening because the values for those parameters are expected in the report.
My suggestion would be to create defaults for the parameters in the report with the necessary...
November 15, 2011 at 2:31 pm
Have a look at the following: http://sqlblog.com/blogs/kevin_kline/archive/2008/10/09/ssis-packages-need-love-too-er-memory-too.aspx
I think the resources listed there will provide the necessary information.
November 14, 2011 at 12:44 pm
jean.gelinas (11/8/2011)
= Switch(
Fields!BeneficiaryType="PERSON","Name:",
Fields!BeneficiaryType = "TRUST","Trust Name:",
Fields!BeneficiaryType = "Charity","Charity/Organization:",
Fields!BeneficiaryType = "ESTATE","Estate Name:")
Getting the following...
November 8, 2011 at 12:25 pm
Definitely not a SQL Agent issue.
One or two things are coming to mind that may cause this...the first is drivers (32/64 bit). BIDS is a 32-bit environment, and will...
November 8, 2011 at 12:21 pm
Terrie (11/8/2011)
Are there any pros or cons to putting all projects (SSAS, SSIS, SSRS) in one solution? There are about 30 projects.
I guess the only possible con is that...
November 8, 2011 at 10:08 am
raotor (11/3/2011)
SELECTCOUNT(Price)
FROMTempSales
GROUP BY Price
ORDER BY Price;
I'm afraid as I'm so green with this forum you'll have to tell me the best way to attach the execution plans...
November 4, 2011 at 11:37 am
onlo (11/2/2011)
However, I am...
November 2, 2011 at 11:44 am
Yes, you do need a "FROM"-clause. The CTE's can be used as tables in your final query.
November 2, 2011 at 11:36 am
As far as I know, "Isnull" is not a valid Excel function so it cannot be used in queries against an Excel connection.
You would be better off extracting all the...
November 2, 2011 at 11:28 am
I tend to agree with Elliott on this one.
If you separate SSIS from the SQL Server instance, there are definitely a few trade-offs which in my opinion is not always...
October 28, 2011 at 2:17 pm
David Lester (10/26/2011)
October 26, 2011 at 11:12 am
David Lester (10/26/2011)
October 26, 2011 at 10:57 am
Hi,
How about using a recursive cte?
Read up about it in BOL...that should work.
Martin.
October 25, 2011 at 10:54 am
Viewing 15 posts - 736 through 750 (of 887 total)