Viewing 15 posts - 736 through 750 (of 893 total)
You could try something similar to the following:
create function [dbo].[Split_Values]
(
@String varchar(4000)
,@Delimiter varchar(1)
)
returns @Split_Values table(String_Value varchar(200))
as
begin
insert into @Split_Values
(
String_Value
)
(
selectsubstring
(
@Delimiter + @String + @Delimiter
,N + 1
,charindex(@Delimiter,@Delimiter + @String...
November 16, 2011 at 12:16 pm
Without more information about the package I am purely guessing here...but I suspect you are not setting the username and/or password for this connection properly.
Are you using a config file...
November 16, 2011 at 12:04 pm
Martin Schoombee (11/16/2011)
Have you tried to create a data-driven subscription? That will allow you to specify a query to...
November 16, 2011 at 10:02 am
Just one more thing as I'm reviewing your initial posts again.
Have you tried to create a data-driven subscription? That will allow you to specify a query to return the...
November 16, 2011 at 9:02 am
SQL_Nw (11/16/2011)
Do you mean I need to make changes in stored proc? I cant do that.How can I do it in ssrs only. Any leads please..
No. Create a new...
November 16, 2011 at 8:45 am
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
Viewing 15 posts - 736 through 750 (of 893 total)