Viewing 15 posts - 46 through 60 (of 141 total)
like this only i transfer data lynn for the first table
insert into [dbo].[tblSpace] (MemberId, AdSpaceName, TotalBlocks, PaymentType)
SELECT
...
July 22, 2012 at 11:51 pm
for example
here i inserted five value form the source table for example iam start in from the of the first table to...
July 19, 2012 at 11:28 am
thanks lynn it was working fine thanks a lot
July 17, 2012 at 3:07 pm
sorry no thanks i just found the solution when i select system database
July 17, 2012 at 1:42 pm
hi saggi
follow this step mentioned in the website i hope it help u
...
July 16, 2012 at 6:00 am
thanks
Jeff Moden,
Lynn Pettis
for giving new idea to me
July 7, 2012 at 12:53 am
i used your function and i solved my problem
declare @temptable2 table (MainCategory varchar(200),SecondLevelCategory varchar(200),ThirdLevelCategory varchar(200) )
;WITH Cte AS (
select
distinct...
July 7, 2012 at 12:50 am
i used this way
Create table #temptable2 (firstlevel varchar(200),ThirdLevel varchar(8000) ) ;
insert into #temptable2 (firstlevel,ThirdLevel ) VALUES ('count1','serv,dan,ton');
insert into #temptable2 (firstlevel,ThirdLevel ) VALUES ('count2','wers,tdan,tondrer,fhhgj,tern') ;
WITH Cte AS (
...
July 6, 2012 at 2:44 pm
J Livingston SQL your proc was working fine and i am not finding exact member level of that...
July 5, 2012 at 12:50 am
this is question which u asked
Level Payout%
X-3 2% --The person below reports to this person and this person gets 2% of the sale...
July 5, 2012 at 12:13 am
hi
J Livingston
sorry for the twodays i was admitted in a hospital due to an injury on my right leg now only i came...
July 3, 2012 at 10:37 pm
thanks lynn pettis
June 30, 2012 at 7:48 am
...
June 30, 2012 at 5:09 am
i just tried like this
;WITH MemberAndParent
AS (
SELECT m.MemberID, m.Name AS MemberName, r.ParentId
FROM tblMembers m
LEFT JOIN
tblMembersRelation r
ON r.MemberID = m.MemberID
),
Hierarchy
AS (
SELECT ParentId, MemberID, 0 AS LevelNum, MemberName, CAST(MemberName AS VARCHAR(1000))...
June 29, 2012 at 11:57 pm
can any one plz try to help me
June 29, 2012 at 12:18 pm
Viewing 15 posts - 46 through 60 (of 141 total)