Viewing 15 posts - 76 through 90 (of 130 total)
i am not getting any error msg,the query is executing indefinite time,
if i put insert into @temp7
without it i am getting data
April 27, 2012 at 1:09 pm
this is not working,
i am calling another sp.
but its not getting into @temp table.
insert into @temp7
EXEC pPortfolioDashboard
@Portfolios = @AdjustPortfolio,
@FromDate = @FromDate,
@ToDate = @ToDate,
whats wrong,how to...
April 27, 2012 at 12:59 pm
that was not code,i was just explaining you.
anyways so it will take + in portfolio after that
April 26, 2012 at 1:00 pm
ALTER procedure[pPortfolioDashboard]
------Required parameter----------------
@SessionGuid nvarchar(48),
@FromDate datetime,
@consolidate bit,
---optional parameter-------------------
...
April 26, 2012 at 12:51 pm
do i need to put any variable,how can i put just this statement
suppose i declare @boolean bit,
now case
it wont wokr
April 26, 2012 at 12:42 pm
where i need to put this statement,in sp or in the report,if in the report where?
April 26, 2012 at 12:36 pm
thanks Lynn.Got solve myself.
i needed to use table variable as it is stored in the memory.i was displaying my result with temp.
so ssrs was not picking it up
April 25, 2012 at 7:55 pm
i gave you ddl of my temp table.
if i remove temp table ,and just keep select statement,i am not getting any error ,in dataset in report.
like
@Portfolios or @PortfolioObjectID cannot both...
April 25, 2012 at 6:44 pm
create table ##temp1(shortname nvarchar(255),
portfoliobaseid int,
...
April 25, 2012 at 6:30 pm
need a suggestion
i am putting my select statement in temp table.
if i remove this temp and only keep select ,i am not getting this error.
Is there any limitation of...
April 25, 2012 at 6:09 pm
my question is particular sp.
i dont find option to put its name
April 25, 2012 at 4:14 pm
i dont know ,if anybody knows,but my all previous sp has same thing that i am doing.
and its working fine
April 25, 2012 at 2:13 pm
Viewing 15 posts - 76 through 90 (of 130 total)