Viewing 15 posts - 46 through 60 (of 65 total)
In a similar scenario in our system we have scheduled a call to a Stored Procedure which send mail to client using dbmail.
July 2, 2010 at 9:42 am
Please dont get me wrong here:-)
i meant in what format is it stored? Is it some file sort or what? Whats the unit of data stored...
Hope i am a bit...
July 2, 2010 at 9:28 am
Hope this helps...
declare @stmt nvarchar(max)
declare @whrcls nvarchar (max)
declare @param int
set @param=1
set @whrcls=''
set @stmt = 'SELECT SALESPERSON,
...
June 26, 2010 at 9:14 am
Thanks to forum (again) , i have something new to offer to my client...
June 23, 2010 at 10:04 am
@ John, this is my last option i know 🙂
Really a tedious task for a lazy person like me.
Anyways i am planning to write to the SSIS/RS team to...
June 22, 2010 at 2:10 am
I know the ETLs and Reports that are used but i do not have any list of tables which are being referenced by them. So i was looking for any...
June 22, 2010 at 1:55 am
In short my condition is all worst now... B'coz:(
1) Primarily this Database is for reporting purpose . There are customized user specific report too. Now the user may run a...
June 21, 2010 at 11:09 am
thanks Cindy,,, can be a good starting point.
June 17, 2010 at 12:23 am
Hi Shield,
Your logic was excellent... and will help me achieve what i wanted.
I learnt something new today 🙂
One more query :
Can we use CTE with SP, as in
;WITH cte...
June 7, 2010 at 3:20 am
My two cents:
select *,
CASE
WHEN DATEDIFF(WEEK,signing_date, entry_date)=1
THEN 'On Time Signing'
ELSE 'Exception Not within Time range'
END As TimeStatus
from example
result set:
2010-05-15 00:00:00.0002010-05-15 00:00:00.000Exception Not within Time...
May 30, 2010 at 12:29 am
i have to cleanse some data at back-end level, which was earlier done at front. so for that i was considering using a view/ or a temp table as a...
May 12, 2010 at 10:55 am
I also have a similar scenario, (as suggested) i am trying to do the grouping at front end (SSRS report in my case)
Now the problem, when the results set size...
May 12, 2010 at 4:37 am
Hope this helps...
select * from cunsumption_detail
where
(form38_no like ('AA-[1-9][0-9]') and form38_no not like ('AA-10'))
or
form38_no like ('AA-10[0-9]') and form38_no like ('AA-110')
May 7, 2010 at 4:39 am
how abt this?
declare @month datetime
set @month = 'apr'+'1 2010'
SELECT DATEPART(MONTH, @month)
Cheers,,,
May 7, 2010 at 3:04 am
Viewing 15 posts - 46 through 60 (of 65 total)