Viewing 15 posts - 31 through 45 (of 57 total)
This will give you a comma separated list of company names for each user id/group id combination
SELECT
[User ID],[group id]
,VenNum_B =...
January 5, 2014 at 6:23 pm
You are right, there are built in functions. I can't imagine why you would not use them, but the only sensible alternative is to use the Cryptography namespace in...
January 5, 2014 at 6:10 pm
The best way to do a history of changes IMO is a seperate table that identifies all changes, inserts, updates, and deletes, and stores old and new data. It...
January 5, 2014 at 6:07 pm
Hear where, on what basis ?
http://www.mssqltips.com/sqlservertip/1604/move-all-sql-server-system-databases-at-one-time/ was the best looking of the first page of google hits I got from typing in your question. A quick...
January 5, 2014 at 5:59 pm
Exactly - that's why the OP needs to get business rules from the paying client, because this system will NEVER be reliable, and the most he can hope for, is...
January 4, 2014 at 9:45 pm
OK, here is a recursive solution that gives a list of flights, in order, with a sequence of numbers next to them. It's assumed any stopover greater than a...
January 4, 2014 at 9:15 pm
I agree. The hard part is working out where the tree stops, and where the return journey begins. That's really what I was trying to do with it,...
January 4, 2014 at 8:33 pm
If there is a flight table, then this database is significantly not normalized, but he's told me in the past that they don't store the arrival dates at all, just...
January 4, 2014 at 6:43 pm
I've spent an hour playing with this. This would work, if there was a maximum of one connection:
select t1.[pax id], t1.board, case when t2.[off] is null then '' else...
January 4, 2014 at 2:50 pm
You modified the original post ? Reading it, you're asking for an 'arrival date' column. But I don't see any data you can use to work that out, that's...
January 3, 2014 at 1:35 pm
In the first instance, the question has to be, why would you have this data in your DB ? You should be seperating this data out, in your business layer,...
January 2, 2014 at 3:06 pm
I feel sorry that I opened this can of worms, I'm not sure how much benefit there is in discussing it further. My very first post there, was with...
December 31, 2013 at 2:54 pm
Jeff Moden (12/30/2013)
kapil_kk (12/29/2013)
Please do not post duplicate post in different forums it will save other people time too..
Actually, I would have done the same thing if I thought the...
December 30, 2013 at 9:46 pm
Funny enough, I got a notification that told me where the other thread was. For anyone interested in seeing the other solutions offered, it's here:
December 30, 2013 at 3:49 pm
Viewing 15 posts - 31 through 45 (of 57 total)