Viewing 15 posts - 1 through 15 (of 32 total)
I'm all for CI. We're trying to crack that nut in a complex system with many moving parts. One thing you mentioned is that customers may expect new features sooner...
September 6, 2013 at 6:44 am
Thanks Steven. One motivation was to see about performance difference and common steps to use temp table. The other motivation was to work towards a coding standard like you mentioned.
January 14, 2013 at 11:03 am
Thanks for the great input. It was helpful.
Cliff
January 11, 2013 at 1:54 pm
chrisn-585491 (9/14/2012)
An idea: Apply this on Friday afternoon after lunch, when you're probably not going to accomplish much in-the-box work anyway.
Friday afternoon? That's when project managers that have been sitting...
September 14, 2012 at 9:33 am
I knew there'd be much missing in my description.
Getting it via email because it is a hosted Oracle Apps system and the people getting the file can't find any way...
September 12, 2012 at 10:08 pm
My company has an internal hackathon type event. They bring in food and drink and have prizes. Sometimes the entries getting incorporated into the software, sometimes it's just an exploration...
September 12, 2012 at 6:47 pm
I'm in the same place, too. I came in and inherited lots of not so elegant solutions that could be made very svelte. We are getting there to make it...
September 12, 2012 at 6:43 pm
Stephanie. That is my take on it. I completely see that we will have a object-oriented application layer with collections similar to what you describe. But the database will be...
January 6, 2012 at 10:51 am
Thank you Mike for those thoughts. They all make complete sense to me.
January 5, 2012 at 8:35 pm
I believe CROSS APPLY is more like a cartesian product. If you want the join effect could you try something like this.
select ClientName, AppointmentList
from #tmpClients c
JOIN (
SELECT DISTINCTap.ClientKey, STUFF((SELECT ','...
December 14, 2011 at 4:37 pm
Are you trying to do this all in one statement? It seems like you would truncate or delete the data, then insert the data. Are you doing this with a...
December 13, 2011 at 8:10 am
I think I'd vote with Todd and have an actual dates table that gets built out for the next few years because what about holidays that don't fall on the...
December 8, 2011 at 7:44 am
There is an undocumented procedure called sp_msforeachdb that might do the trick. I've reinitialized user before but it was a one time thing so I scripted it all out and...
November 23, 2011 at 7:59 am
This is my stab at it. It doesn't do RBAR (unless unpivot does something behind the scenes I don't know about) and it doesn't do any kind of looping. I...
November 17, 2011 at 11:08 am
Hi Vijay. I have a couple of questions.
How can you guarantee that the sequence will remain the same within a refno? For example, with refno 1000 you can't be absolutely...
November 17, 2011 at 10:30 am
Viewing 15 posts - 1 through 15 (of 32 total)