Viewing 15 posts - 1 through 15 (of 22 total)
I cannot figure out which table to get information for the next scheduled Job.
Would it be dbo.sysschedules -active_start_date,active_start_time
OR
dbo.sysjobschedules- next_run_date,next_run_time?
September 18, 2012 at 4:11 pm
Is there a way to figure out which tables are affected by which jobs?
September 14, 2012 at 1:04 pm
That sounds great! Could you please post it?
Thanks
September 12, 2012 at 6:36 am
Ahmed,
I am not a DBA and haven't actually used any of those tools. But I came across some great queries which will provide SQL Agent Jobs and schedules related information.
September 11, 2012 at 6:48 am
Yes, I have 2 sub-reports. One take two parameters, one from the resultset of main report and the other is one of the main report parameter. This subreport is now...
February 24, 2010 at 12:51 pm
Actually, on subreport works fine now, but not the second one.
When I try to execute the second one,
[rsErrorExecutingSubreport] An error occurred while executing the subreport ‘srCalcTotals’(THIS IS ACTUALLY THE FIRST...
February 24, 2010 at 12:33 pm
My report has a set of parameters which execute a stored proc.
When I designed the subreport, I pass it a parameter to test.
When I run the main report, the resultset...
February 24, 2010 at 12:25 pm
Ok, if I'm understanding you correctly. I right click and go to subreport properties, 'visibility' tab, select option 'Expression'
and put the expression-
=IIf(Parameters!SortSeq.Value = 1, False,True)
This worked, but displayed just first...
February 24, 2010 at 12:04 pm
I have put the two subreports srCalcProg1Totals,srCalcProg2Totals in the group footers.
Now where do I say which subreport to execute/show and how?
For example. (I know this syntax is not right)
=Switch(Parameters!SortSeq.Value=1,srCalcProg1Totals,
Parameters!SortSeq.Value=2,srCalcProg2Totals)
February 24, 2010 at 9:42 am
I'm sorry I meant to delete those before posting.
So here it is-
CREATE table From_Upd(
Col_01 Char(1) Not Null,
Col_02 Varchar(20) null )
INSERT INTO From_Upd (Col_01,Col_02) Values ('1','''01'',''02'',''03'',''04''')
INSERT INTO From_Upd (Col_01,Col_02) Values...
December 17, 2009 at 11:40 am
It did take double qoutes:
=JOIN(Parameters!ParameterName.Value,";")
Thanks for all your help!
June 30, 2008 at 6:37 am
The error I get by doing so is-
The value expression for the textbox 'textbox#' contains an error: [BC30201] Expression expected.
June 30, 2008 at 6:33 am
It did work without delimiter though-
=JOIN(Parameters!ParameterName.Value)
Have you have defined ';' somewhere?
thanks
June 27, 2008 at 9:11 am
Viewing 15 posts - 1 through 15 (of 22 total)