Viewing 15 posts - 9,796 through 9,810 (of 15,381 total)
Please don't cross post. Direct all replies here. http://www.sqlservercentral.com/Forums/Topic1398784-1292-1.aspx
December 20, 2012 at 8:33 am
Solitary Reaper (12/19/2012)
Thanks a lot Simon!!Your code worked perfectly!! 🙂
I would recommend to both you and Simon that you take a look at the link in my signature about splitting...
December 20, 2012 at 8:16 am
Good question about a frequently unknown topic. I guessed wrong because I couldn't decided the slant the author was using. I figured if I said it was possible because of...
December 20, 2012 at 8:12 am
I would have to agree with Greg. This design is horrible. You really need to read up on normalization. This whole collection of tables could be a single table. The...
December 19, 2012 at 3:20 pm
lonhanner (12/19/2012)
CREATE TABLE NEW_DETAILS
(
TD_NUM int identity not null,
TRIP int not null,
RIDER_NO int not null,
LNAME nvarchar(20) null,
FNAME nvarchar(20) null,
PROV_CON int null,
APT_TIME time(7) null,
PKUP_TIME time(7) null,
TD_REMARKS...
December 19, 2012 at 3:13 pm
anuj12paritosh (12/19/2012)
I have a table and columns with data is mention below :-
Table :- ORDER
COLUMN and values :-
...
December 19, 2012 at 8:38 am
anthony.green (12/19/2012)
Can you please follow the links in my signature to posting, code and data for the best help and also the how to post performance problems so...
December 19, 2012 at 8:34 am
Terry300577 (12/19/2012)
i am sure i have seen a script on SSC for a dynamic pivot function; think this is the one : CLR Pivot[/url]
Or if you want a completely t-sql...
December 19, 2012 at 8:28 am
Hi and welcome to SSC. It is pretty difficult to provide a detailed answer for your question without speculating quite a few things. You might want to take a quick...
December 18, 2012 at 1:57 pm
This seems to be a carbon copy another post from just a couple days ago.
http://www.sqlservercentral.com/Forums/Topic1395812-392-1.aspx
December 18, 2012 at 1:47 pm
Nisean (12/18/2012)
December 18, 2012 at 1:46 pm
Take a quick look at Lynn's article about some common date lookups.
http://www.sqlservercentral.com/blogs/lynnpettis/2009/03/25/some-common-date-routines/%5B/url%5D
December 18, 2012 at 1:43 pm
zilla (12/18/2012)
Here is the...
December 18, 2012 at 12:10 pm
SoberCounsel (12/18/2012)
Thanks Sean, for adding the links to further info about the nolock hint... as it...
December 18, 2012 at 9:42 am
sqlrd22 (12/18/2012)
I currently run a query daily and have to results going into a table using insert into.. select...
The problem is, this puts all the results of the query into...
December 18, 2012 at 8:26 am
Viewing 15 posts - 9,796 through 9,810 (of 15,381 total)