Viewing 15 posts - 166 through 180 (of 359 total)
is there any reason that you need to use the pearl script to scheule over a SQL job?
also look up output
http://msdn.microsoft.com/en-us/library/ms177564.aspx
***The first step is always the hardest *******
July 23, 2012 at 7:32 am
Look up Ranking functions here is an example
create table #t1 (id int,col varchar(5))
insert into #t1 select 102,'#1' union all
select 102,'#2' union all
select 102,'#3' union all
select 105,'#4' union all
select 105,'#5' union...
***The first step is always the hardest *******
July 20, 2012 at 5:58 am
Depending on what your doing what about using a CTE?
***The first step is always the hardest *******
July 20, 2012 at 5:31 am
quite possible an error in the processing section causing the script to exit your cursor However the cursor is not closed and not deallocated within the session therefore the...
***The first step is always the hardest *******
July 18, 2012 at 1:50 pm
SQLRNNR (7/18/2012)
chronometer
Tronometer
***The first step is always the hardest *******
July 18, 2012 at 1:38 pm
as today is the 13th its a good day my lucky day 🙂 other day was a dark day lol 😀
***The first step is always the hardest *******
July 13, 2012 at 12:12 pm
try the union that i added
***The first step is always the hardest *******
July 12, 2012 at 3:07 pm
im no XML expert but, i use this command to import xml files in to my database, I created a SP using the dynamic SQL so i can...
***The first step is always the hardest *******
July 12, 2012 at 12:54 pm
Cliff Jones (7/12/2012)
SGT_squeequal (7/12/2012)
crapiolagranola!
Granyola
***The first step is always the hardest *******
July 12, 2012 at 12:42 pm
syntax is correct but does it bring back correct records?
this may be better
select .........
FROM
Evy_RH_Objects.dbo.RETAIL_SALES I
INNER JOIN RH2007_EvyLive.dbo.ITEMMAST J on J.SKU=I.SKU
union
select .........
FROM
Evy_RH_Objects.dbo.RETAIL_SALES I
INNER JOIN RH2007_EvyLive.dbo.ITEMMAST J...
***The first step is always the hardest *******
July 12, 2012 at 12:28 pm
crapiola
***The first step is always the hardest *******
July 12, 2012 at 12:14 pm
:hehe:
Jeff Moden (7/12/2012)
SGT_squeequal (7/12/2012)
will grant, that set...
***The first step is always the hardest *******
July 12, 2012 at 10:33 am
I dont really know how to take your remark, are you being a popmus git, just showing off or trying to help? mmm
will grant, that set based, over loop...
***The first step is always the hardest *******
July 12, 2012 at 9:17 am
i used the loop before any of the set based ooptions appeard plenty to ponder for the future :);-)
***The first step is always the hardest *******
July 12, 2012 at 8:26 am
I used the while loop within while loop worked a treat for what i need :), thanks for all the SET based solutions but id used the loop to complete...
***The first step is always the hardest *******
July 12, 2012 at 8:16 am
Viewing 15 posts - 166 through 180 (of 359 total)