Viewing 7 posts - 1 through 7 (of 7 total)
Dwain tried your code and works great on the example, however when i try it on all columns the resulting data is spread all over will have...
August 19, 2013 at 11:05 am
Thanks Dwain - will give it a try
August 19, 2013 at 8:28 am
i tried both Sean and Luis suggestions
On Luis's a got a timeout error on the query before i finished adding all the columns . There are 18 columns i...
August 16, 2013 at 1:58 pm
thanks Luis - will try that too
August 16, 2013 at 10:38 am
Thanks Sean - will try it out ASAP
the customer wants to see the values of "lookup tables" (values in drop-down select boxes) in the application in one place...
August 16, 2013 at 10:14 am
thanks for replying Sean
create table #temp_test
(
PROGRAM varchar(30),
MARKET_SEGMENT varchar(50),
RESP_ORG varchar(12),
APPROVAL varchar(50)
)
INSERT INTO #TEMP_TEST
(PROGRAM)
values ('ABC')
INSERT INTO #TEMP_TEST
(PROGRAM)
values ('DEF')
INSERT INTO #TEMP_TEST
(PROGRAM)
values ('GHI')
INSERT INTO #TEMP_TEST
(PROGRAM)
values ('JKL')
INSERT INTO #TEMP_TEST...
August 16, 2013 at 9:53 am
--===== If the test table already exists, drop it
IF OBJECT_ID('TempDB..#mytable','U') IS NOT NULL
DROP TABLE #mytable
--===== Create...
June 5, 2009 at 8:03 pm
Viewing 7 posts - 1 through 7 (of 7 total)