Viewing 15 posts - 16 through 30 (of 38 total)
That was just an example. I just wanted to find out whether i can call stored procedure from SELECT statement or not.
Thanks
January 12, 2010 at 2:34 pm
I faced a similar problem but when I deployed that report, it worked without throwing
any exceptions or errors.
August 26, 2009 at 7:32 pm
Because after changing Job_Number parameter to multivalue, you will have multiple values for Job_Number
that text box can not display.
August 26, 2009 at 7:16 pm
try using SUM function with dataset name.
August 26, 2009 at 6:48 pm
Jack
If I set available values for EDATE parameter then I am not getting Calender functionality
but instead of that I m getting drop down list.
Any suggestions?
August 26, 2009 at 9:56 am
Thanks Jack for your information.
I provided available values for EDATE parameter and it worked.
Thanks
August 26, 2009 at 9:51 am
Thank you for the information.
SELECT parameter setting:
Available Values:
YES
NO
Default Values:
Null
EDATE parameter setting
Default Values:
=SWITCH(Parameters!SELECT.Value="Yes",DATEADD("d",-1,now),
Parameters!SELECT.Value="No",
now)
August 26, 2009 at 9:48 am
select @Exprdate=(SELECT distinct T0.ExpDate FROM OIBT T0 Where T0.ItemCode = @ItemNo and T0.BatchNum=@Batchno)
Instead of passing values to variable, try storing output of above select statement in a temporary...
August 22, 2009 at 12:47 pm
select @Batchno=(SELECT distinct T1.[BatchNum] FROM IBT1 T1 WHERE T1.BaseNum=@delivno or T1.BaseNum=@docno)
select @Exprdate=(SELECT distinct T0.ExpDate FROM OIBT T0 Where T0.ItemCode...
August 14, 2009 at 2:45 pm
I looked at execution plan and everything looks good but Nested Loop (Inner Join) costs 90%.
July 30, 2009 at 3:03 pm
I want the output in following format:
---------------------------------------------------
Classification | Jan AVG | Feb AVG...
July 28, 2009 at 12:15 pm
No, I dont want to use cross join because by using that i guess it will give me wrong average.
July 28, 2009 at 10:40 am
you can give permission to execute function to three user.
July 16, 2009 at 7:27 am
Use T-SQL for creating TCP endpoints and granting CONNECT permission.
After you have created endpoints and granted permission then use Mirroring GUI.
July 15, 2009 at 12:47 pm
Viewing 15 posts - 16 through 30 (of 38 total)