Viewing 15 posts - 1,921 through 1,935 (of 1,988 total)
Do you mean you want the report to actually say the text 'null'?
You could modify the reports with ISNULL(<column name>, 'null') statements, or ask whoever is populating those fields to...
August 28, 2014 at 12:13 pm
jcb (8/28/2014)
That [IncidentDetails].[InsertDate] columns keeps the modification timestamp.
No no other operation and the user is a trained tester looking for this kind of issue, unless he manualy updated that value...
August 28, 2014 at 7:47 am
Is there a last modified date on the incidents? Maybe the user changed the status again after setting it to postponed.
August 27, 2014 at 3:10 pm
WITH TEMP_CTE AS (
SELECT steps, ROW_NUMBER() OVER(ORDER BY steps) AS ROW_NUM FROM #table1
)
SELECT t1.steps, t2.steps FROM TEMP_CTE t1, TEMP_CTE t2
WHERE t1.ROW_NUM < (SELECT MAX(ROW_NUM) FROM TEMP_CTE)
AND (t2.ROW_NUM - 1) =...
August 27, 2014 at 10:23 am
bd this is because DTS Packages are not SSIS Packages, the wizard doesn't copy the packages from your 2000 server to your 2008 server it tries to create them as...
August 26, 2014 at 11:08 am
SSIS packages are a new thing starting from 2005(they're not just a new name for DTS Packages), what you're seeing in the MSDB node are the SSIS packages created by...
August 26, 2014 at 10:10 am
Do you mean you converted the DTS packages to SSIS packages on the 2008 server, or did you just copy them over as legacy dts packages to the 2008 server?
August 26, 2014 at 9:27 am
There's some distinction to be made between methodology as in how things get done and what you are trying to get done. As well as distinguising the difference between...
August 19, 2014 at 3:22 pm
A decent rule of thumb is to take what you would be expecting to make as a salaried employee given your experience, convert it to hourly assuming a 40 hour...
August 19, 2014 at 11:57 am
smtzac (8/19/2014)
Yes it does, some time Transaction log file (backup from Log shipping) is 100+...
August 19, 2014 at 9:31 am
Can you provide more reasons why you need a row number? There might be a solution that doesn't involve row number directly.
August 15, 2014 at 8:15 am
Fair enough, if for whatever reason the default is changed.
Replace that with
(DATEDIFF(day, '1/6/2013', getdate()) % 7) < 4
July 30, 2014 at 4:05 pm
SELECT CASE WHEN DATEPART(weekday, getdate()) < 5
THEN DATEADD(day, 4, DATEADD(week, datediff(week, '1/6/2013', getdate()), '1/6/2013'))
ELSE DATEADD(day, 11, DATEADD(week, datediff(week, '1/5/2014', getdate()), '1/5/2014')) END
This should always get you the next...
July 30, 2014 at 3:48 pm
patrickmcginnis59 10839 (12/10/2013)
ZZartin (12/10/2013)
patrickmcginnis59 10839 (12/10/2013)
PHYData DBA (12/10/2013)
patrickmcginnis59 10839 (12/9/2013)
Well thats what I was wondering, then and now. What makes RBAR so slow if its not the language? If its...
December 10, 2013 at 2:12 pm
patrickmcginnis59 10839 (12/10/2013)
PHYData DBA (12/10/2013)
patrickmcginnis59 10839 (12/9/2013)
Well thats what I was wondering, then and now. What makes RBAR so slow if its not the language? If its not the language,...
December 10, 2013 at 12:53 pm
Viewing 15 posts - 1,921 through 1,935 (of 1,988 total)