Viewing 15 posts - 181 through 195 (of 761 total)
Thanks GSquared......I'll add logging and trace the package. I'll get back to you on this one after I'm done with it.
October 25, 2012 at 10:17 pm
I really don't know a lot about CLR. And I think if I start now then it would be really time consuming. So, I'd rather stick to solving this problem...
October 19, 2012 at 3:12 am
Eugene Elutin (10/18/2012)
I...
October 18, 2012 at 6:57 am
GSquared (10/18/2012)
If it's to read values out of the row, then what...
October 18, 2012 at 6:55 am
Hi Sam,
I changed the properties of my package as you suggested. But, it didn't improve anything. I am adding an image which shows the various current sessions on the...
October 18, 2012 at 3:42 am
This is another way of doing it...and I guess the simplest way....:-)
With YOURTABLE (TICKET,STATUS)
AS
(
SELECT 9543,1 UNION ALL
SELECT 9543,5 UNION ALL
SELECT 9543,5 UNION ALL
SELECT 9544,1 UNION ALL
...
October 18, 2012 at 1:27 am
Thanks a lot for the replies.
I know that this is a bad idea, but some people above me disagree.....anyways if this doesn't work then they'll learn I guess.
I am pretty...
October 17, 2012 at 9:54 pm
Laurie is right. Please post DDL, Sample Data and the Expected Result and we will give you a sample solution using a Recursive CTE.
September 26, 2012 at 4:28 am
Where in the Sample Data does it show that the city is mapped to address 3??...What is the logic behind the city being mapped to Address 3 and not 1...
September 10, 2012 at 3:38 am
The following query should do it for you:
Select a.IssID, a.subject, a.dessc,
MAX(Case When c.new_value = 'Accept' Then b.created_on Else NULL End) As Accepted_Date,
MAX(Case When c.new_value = 'Assign' Then b.created_on...
September 6, 2012 at 4:55 am
woody_rd (9/5/2012)
a timestamp, eventid...
September 6, 2012 at 1:40 am
dwain.c (9/5/2012)
woody_rd (9/5/2012)
Kind of odd, that query returns 0 results.To which query do you refer? Mine returns 2 rows:
EventID
1
2
May be the OP means that when he applied your query...
September 6, 2012 at 12:06 am
ohhh!!!! yes!!....i didn't look at the logic that way...that completely missed my eye. Sorry, My Bad. I was in a hurry, I just saw the OP's post and replied without...
September 5, 2012 at 2:35 am
I really didn't understand the requirement. Would be better if you could come up with a better example. Please have a look at the link in my signature to get...
September 5, 2012 at 1:44 am
You can use a lot of methods to do this. It all depends on what part of the String you want to remove, the type of requirement(one time or a...
September 5, 2012 at 1:34 am
Viewing 15 posts - 181 through 195 (of 761 total)