Viewing 15 posts - 31 through 45 (of 65 total)
sksankararaman (8/22/2008)
I am new SQL. I can write some amount of queries. I have this problem and I am looking for a solution.
I have one table which has...
August 22, 2008 at 4:37 am
sksankararaman (8/22/2008)
I am new SQL. I can write some amount of queries. I have this problem and I am looking for a solution.
I have one table which has...
August 22, 2008 at 4:11 am
sg (8/22/2008)
Updating the temp table as done by Arjun tewari wont work
declare @i int
set @i=234
update #temps set @i = cl_bal = @i...
August 22, 2008 at 3:40 am
Chirag (8/22/2008)
arjun.tewari (8/22/2008)
arjun.tewari (8/22/2008)
sg (8/22/2008)
(
num int, OP_Bal int, quantity int
)
insert into #Temps values(1, 234, 12)
insert into #Temps values(2, 234, 08)
insert into #Temps values(3, 234, 9)
insert into #Temps values(4,...
August 22, 2008 at 3:14 am
roy.halvorsen (8/22/2008)
August 22, 2008 at 1:40 am
arjun.tewari (8/22/2008)
sg (8/22/2008)
(
num int, OP_Bal int, quantity int
)
insert into #Temps values(1, 234, 12)
insert into #Temps values(2, 234, 08)
insert into #Temps values(3, 234, 9)
insert into #Temps values(4, 234, 11)
select...
August 22, 2008 at 1:35 am
sg (8/22/2008)
(
num int, OP_Bal int, quantity int
)
insert into #Temps values(1, 234, 12)
insert into #Temps values(2, 234, 08)
insert into #Temps values(3, 234, 9)
insert into #Temps values(4, 234, 11)
select *...
August 22, 2008 at 1:31 am
Ray Herring (8/20/2008)
August 20, 2008 at 11:42 pm
Exactly, Go for the derived table it is much much more performant than a sub query.
August 20, 2008 at 11:34 pm
BTW, AFTER LOOKING AT THE DATASET, how do you define a member to be the parent of other?
August 20, 2008 at 11:31 pm
soren kongstad (8/20/2008)
I have a dataset that looks like this
id Code Text
001 A ...
August 20, 2008 at 11:27 pm
Man the requirement of this fellow is that his table name is also dynamic. 😎
August 20, 2008 at 10:25 pm
Abhijit More (8/20/2008)
August 20, 2008 at 6:46 am
Johannes Fourie (8/20/2008)
August 20, 2008 at 6:01 am
Spend some time in converting the external data as pr YOUR requirement and avoid further pains.
August 20, 2008 at 5:43 am
Viewing 15 posts - 31 through 45 (of 65 total)