Viewing 10 posts - 1 through 10 (of 10 total)
how to change report parameters dynamically
March 24, 2014 at 11:49 am
ALTER PROCEDURE [dbo].[GetMissingValues]
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
...
March 20, 2014 at 3:36 am
Hi
My value of
@sqlquery = SELECT ID FROM TABLEA where ID NOT IN ('A1',A'2','A3' ....like this 5000 values )
I am trying to split this into several strings, but...
March 20, 2014 at 3:13 am
EXCEPT Clause worked like a charm. I got output in just 9 mins from 4.5 hours. Thank you
Now when I do a simple select , it is taking more than...
March 18, 2014 at 1:11 pm
Is EXCEPT Clause faster
or
is NOT EXISTS Clause faster ?
March 18, 2014 at 12:17 pm
It works and sometimes fails , without any change in the code .
The error message is as below
We inoke the SSIS package via the DTExec.exe
DTExec /File "\\Server1\SSISPackage1.dtsx"
/ConfigFile "\\Server1\MyConfig.dtsConfig"...
March 12, 2014 at 6:25 am
Actually from CTE is like this .. All 3 are from SAME TABLE , with different conditions in each case
With CTE1 AS
(
Select count(Column1) as Cnt_Column1_Tbl1 FROM TABLE1 with some CONDITION1
),
CTE2...
March 4, 2014 at 6:51 am
Thanks,
I wrote a stored procedure which always returns next row from the table and the proc does not take any parameters. So I think, if I call the stored...
February 24, 2014 at 7:04 am
Thanks for the procedure.
My basic need is that the Report , has to automatically get updated with different rows every 10 seconds.
Say suppose , I have set my...
February 24, 2014 at 3:12 am
Hi,
Can we set Auto-Refresh option for only a table , in a Report which has 2 tables ?.
I think an Auto-Refresh option for the Report, will refresh the entire Report,...
February 21, 2014 at 10:14 am
Viewing 10 posts - 1 through 10 (of 10 total)