Viewing 15 posts - 1 through 15 (of 45 total)
*bump*
I think it has something to do with the DataElementOutput property of the tablix static members, but I can't seem to find a setting that works. When I set...
October 26, 2010 at 12:04 pm
--DECLARE VARS
declare @date datetime
,@no_time datetime-- time stripped off
,@fdom datetime-- first day of month
,@ldom datetime-- last day of month
,@fdoy datetime-- first day of year
,@ldoy datetime-- last day of year
--ASSIGN VARS
select @date...
October 19, 2010 at 8:45 am
That's a great idea! I'm totally stealing that 😀
October 19, 2010 at 8:31 am
I would make the parameters dependent as others have suggested.
If you absolutely had to produce an error message, you could set a hidden boolean parameter (e.g. HIDE) and...
October 19, 2010 at 8:19 am
Thanks for the reply. I figured Profiler was going to be the answer.
February 25, 2010 at 7:00 am
I am under the same impression as Lynn, but what's more is that you can't guarantee which part of the AND will be evaluated first.
December 10, 2009 at 12:45 pm
If you only want to match the On_site to apptdate on the DAY then you need to scrub off the time from both the date time fields. If the...
December 10, 2009 at 12:41 pm
Thanks Gift Peddie, giving him permissions on reportserver AND reportservertempdb was exactly what I was missing.
December 10, 2009 at 11:58 am
Thanks for the reply.
The user can see and execute reports in Report Manager. So I need to elevate the users permissions on the ReportServer, and ReportServerTempDB databases?
December 10, 2009 at 10:17 am
First run on a set with 1.3 M rows. The result set expanded to 3.8 M rows.
I had 167323868 logical reads against my temp table, 0 physical.
Unfortunately that took...
December 8, 2009 at 7:41 am
What have you seen this scale out to?
It's funny you should ask. I'm using a modified version of it in testing right now. I've run it against about...
December 8, 2009 at 7:16 am
So, here's how it plays out.
In the OLE DB data flow source, rather than using "table or view" as the Data access mode, you have to set it...
November 24, 2009 at 2:19 pm
Thanks for the reply!
I haven't tried converting at the source yet, but I'm looking up the syntax right now. I eventually need to use a SQL command anyway to...
November 24, 2009 at 1:19 pm
I don't know if this thread is still live, but I'll throw in a couple things I've run into in my brief SQL career.
I've run into problems in...
October 23, 2009 at 3:33 pm
AND CRD_TXT.EXPN_DTE IN (SELECT MAX (TOCTX_CARDTEXT.EXPN_DTE)
FROM TOCTX_CARDTEXT,
PNCDH_CARDHOLD,
PNCEN_CUSTENRL
WHERE TOCTX_CARDTEXT.UNQ_CRD_NBR = PNCDH_CARDHOLD.UNQ_CRD_NBR AND PNCDH_CARDHOLD.ENR_NBR = PNCEN_CUSTENRL.ENR_NBR AND TOCTX_CARDTEXT. UNQ_CRD_NBR = CRD_TXT.UNQ_CRD_NBR AND TOCTX_CARDTEXT.EFF_DTE <= CAST(FLOOR(CAST(CURRENT_TIMESTAMP AS float)) AS datetime)
AND PNCEN_CUSTENRL.CUST_NBR = 00000
-GROUP...
October 1, 2009 at 8:34 am
Viewing 15 posts - 1 through 15 (of 45 total)