Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 Process is too Slow

Author  Topic 

vedjha
Posting Yak Master

228 Posts

Posted - 2008-06-28 : 05:01:49
select m.aid,m.cstatus as AssociateID,sum(p.fpay) as payment,
(sum(l.lvl1)+sum(l.lvl2)+sum(l.lvl3)+sum(l.lvl4)+sum(l.lvl5)) as levelpay ,
sum(d.fpay) as directsppay, sum(s.fpay) as sponsoringpay
from members m join payment p
on m.cstatus='V'
and m.cclosing=p.cClosingno
and m.cclosing='1'
join levelpayment l
on m.cclosing=l.cClosingno
and l.cClosingno='1'
join directsppay d
on m.cclosing=d.cClosingno
and d.cClosingno='1'
join sponsoringpay s
on m.cclosing=s.cClosingno
and s.cClosingno='1'

group by m.aid,m.cstatus
order by m.aid asc

it is executing since 25 minutes but not give output.
please help.........

Ved Prakash Jha

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-06-28 : 05:07:42
Do you have enough indexes on all your table? Also have you had a look at execution plan to see what are costly steps and presence of any table scans?
Go to Top of Page

sachinsamuel
Constraint Violating Yak Guru

383 Posts

Posted - 2008-06-28 : 05:11:47
"(sum(l.lvl1)+sum(l.lvl2)+sum(l.lvl3)+sum(l.lvl4)+sum(l.lvl5)) as levelpay"

Mimicing the application here is not a good idea. Try to take this logic of summing and adding them at application end.

Don't sit back because of failure. It will come back to check if you still available. -- Binu
Go to Top of Page

vedjha
Posting Yak Master

228 Posts

Posted - 2008-06-28 : 05:17:49
every table having same column as cclosingno, provide same data.
that's why i us join to all columns

select m.aid,m.cstatus as AssociateID,sum(p.fpay) as payment,
(sum(l.lvl1)+sum(l.lvl2)+sum(l.lvl3)+sum(l.lvl4)+sum(l.lvl5)) as levelpay ,
sum(d.fpay) as directsppay, sum(s.fpay) as sponsoringpay
from members m join payment p
on m.cstatus='V'
and m.cclosing=p.cClosingno
and m.cclosing='1'
join levelpayment l
on m.cclosing=l.cClosingno
join directsppay d
on m.cclosing=d.cClosingno
join sponsoringpay s
on m.cclosing=s.cClosingno
group by m.aid,m.cstatus
order by m.aid asc



Ved Prakash Jha
Go to Top of Page

vedjha
Posting Yak Master

228 Posts

Posted - 2008-06-28 : 05:18:45
i have to add all column of levelpayment as
"(sum(l.lvl1)+sum(l.lvl2)+sum(l.lvl3)+sum(l.lvl4)+sum(l.lvl5)) as levelpay"
i have no another option.

Ved Prakash Jha
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-06-28 : 05:35:20
quote:
Originally posted by vedjha

every table having same column as cclosingno, provide same data.
that's why i us join to all columns

select m.aid,m.cstatus as AssociateID,sum(p.fpay) as payment,
(sum(l.lvl1)+sum(l.lvl2)+sum(l.lvl3)+sum(l.lvl4)+sum(l.lvl5)) as levelpay ,
sum(d.fpay) as directsppay, sum(s.fpay) as sponsoringpay
from members m join payment p
on m.cstatus='V'
and m.cclosing=p.cClosingno
and m.cclosing='1'
join levelpayment l
on m.cclosing=l.cClosingno
join directsppay d
on m.cclosing=d.cClosingno
join sponsoringpay s
on m.cclosing=s.cClosingno
group by m.aid,m.cstatus
order by m.aid asc



Ved Prakash Jha


will you have more than one cclosing value for same aid?
Go to Top of Page

vedjha
Posting Yak Master

228 Posts

Posted - 2008-06-28 : 05:42:54
Yes vikash

Ved Prakash Jha
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-06-28 : 05:48:48
Try this solution and see if there's any difference in execution time:-

select m.aid,m.cstatus as AssociateID,
sum(case when m.cstatus='V' and m.cclosing='1' then r.fpay else 0 end) as payment,
sum(r.lvl1)+sum(r.lvl2)+sum(r.lvl3)+sum(r.lvl4)+sum(r.lvl5) as levelpay ,
sum(r.dpay) as directsppay,
sum(r.spay) as sponsoringpay
from members m join
(
select cClosingno,
SUM(case when type='fpay' then value else 0 end) as fpay,
SUM(case when type='lvl1' then value else 0 end) as lvl1,
SUM(case when type='lvl2' then value else 0 end) as lvl2,
SUM(case when type='lvl3' then value else 0 end) as lvl3,
SUM(case when type='lvl4' then value else 0 end) as lvl4,
SUM(case when type='lvl5' then value else 0 end) as lvl5,
SUM(case when type='dpay' then value else 0 end) as dpay,
SUM(case when type='spay' then value else 0 end) as spay
FROM
(
select cClosingno,fpay as value,'fpay' as type
from payment p

union all

select cClosingno,lvl1,'lvl1'
from levelpayment
where cClosingno='1'

union all

select cClosingno,lvl2,'lvl2'
from levelpayment
where cClosingno='1'

union all

select cClosingno,lvl3,'lvl3'
from levelpayment
where cClosingno='1'

union all

select cClosingno,lvl4,'lvl4'
from levelpayment
where cClosingno='1'

union all

select cClosingno,lvl5,'lvl5'
from levelpayment
where cClosingno='1'

union all

select cClosingno,fpay,'dpay'
from directsppay
where cClosingno='1'

union all

select cClosingno,fpay,'spay'
from sponsoringpay
where cClosingno='1'
)t
group by t.cClosingno
)r
on r.cClosingno=m.cclosing
Go to Top of Page

jackv
Master Smack Fu Yak Hacker

2179 Posts

Posted - 2008-06-28 : 06:24:42
Could you post the Plan , also have you updated your statistics?

Jack Vamvas
--------------------
Search IT jobs from multiple sources- http://www.ITjobfeed.com
Go to Top of Page

vedjha
Posting Yak Master

228 Posts

Posted - 2008-06-28 : 06:36:30
i have worked on that but give some error as

Server: Msg 8118, Level 16, State 1, Line 1
Column 'm.AID' is invalid in the select list because it is not contained in an aggregate function and there is no GROUP BY clause.
Server: Msg 8118, Level 16, State 1, Line 1
Column 'm.cStatus' is invalid in the select list because it is not contained in an aggregate function and there is no GROUP BY clause.

I m giving u structure of tables

I have Five Tables as
1)Members 2) payment 3) levelpayment 4) directsppay 5)sponsoringpay

Members:-


CREATE TABLE [Members] (
[AID] varchar(20) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[iSId] varchar(20) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[dtDOB] datetime NULL,
[cSex] char(1) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[vAddress] varchar(150) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[vCity] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[vState] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[vCountry] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS CONSTRAINT [def_AchiverWorld_Members_vCountry] DEFAULT 'India' NULL,
[iPinCode] varchar(20) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[vPhone] varchar(30) COLLATE SQL_Latin1_General_CP1_CI_AS CONSTRAINT [def_AchiverWorld_Members_vPhone] DEFAULT NULL NULL,
[vMobile] varchar(30) COLLATE SQL_Latin1_General_CP1_CI_AS CONSTRAINT [def_AchiverWorld_Members_vMobile] DEFAULT NULL NULL,
[vEmail] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS CONSTRAINT [def_AchiverWorld_Members_vEmail] DEFAULT NULL NULL,
[dtDOJ] datetime CONSTRAINT [def_AchiverWorld_Members_dtDOJ] DEFAULT getdate() NULL,
[ModePay] varchar(25) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[BankName] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[vChqNo] varchar(50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[dtDate] datetime NULL,
[vJoiningCity] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[HintQues] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[HintAns] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[cStatus] char(1) COLLATE SQL_Latin1_General_CP1_CI_AS CONSTRAINT [def_AchiverWorld_Members_cStatus] DEFAULT 'V' NULL,
[iCount] int CONSTRAINT [def_AchiverWorld_Members_icount] DEFAULT (0) NULL,
[vNominee] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[vRelation] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[vParents] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[vAstBank] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[vBranch] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[vAcctno] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[vPanNo] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[cClosing] varchar(10) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[dAmtPaid] decimal(18, 0) CONSTRAINT [DF__members__dAmtPai__14270015] DEFAULT (0) NULL,
[dAmtTran] decimal(18, 0) CONSTRAINT [DF__members__dAmtTra__160F4887] DEFAULT (0) NULL
)
ON [PRIMARY]
GO


INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000000', NULL, '20080525', 'M', 'xcv', 'xcv', 'as', 'India', '242342', '2323223', '232323', '', '20080511 02:27:53.323', NULL, NULL, NULL, NULL, NULL, 'What is Your Pet Name', 'xc', 'V', 7, 'xc', 'xcv', 'sdfg', 'Abu Dhabi Commercial Bank', 'xc', 'xc', NULL, '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000001', 'U100000000', '19270110', 'M', 'C/O DR PANCHANAN SINGH,ANISABAD,BY PASS MORE,PATNA-', 'PATNA', 'BIHAR', 'India', '800002', '', '9835250438', '', '20080511 11:22:00', 'Cash', '', '', '20080511 11:22:00', '', 'What is Your Pet Name', 'NARHARI SWAMI', 'V', 7, 'MRS SIBESH PATHAK', 'SON', 'JAI GURU', '', '', '', NULL, '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000002', 'U100000000', '20030505', 'M', 'RANCHI', 'RANCHI', 'JHARKAND', 'India', '0', '000000', '0000000', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'S K SUMAN', 'DIRECTOR', 'S.K SUMAN', '', '', '', '', '0', 1100, 0)
GO


Ved Prakash Jha
Go to Top of Page

vedjha
Posting Yak Master

228 Posts

Posted - 2008-06-28 : 06:37:10
INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000003', 'U100000000', '20080427', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '834009', '00000000', '0000000', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'ABC', 'ABC', 'ABC', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000004', 'U100000000', '20080428', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '834009', '0651N/A', 'N/A', 'N/A', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'ABC', 'ABC', 'ABC', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000005', 'U100000000', '20080429', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '834009', '0651N/A', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'ABC', 'ABC', 'ABC', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000006', 'U100000000', '20080428', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '834009', '0651N/A', 'N/A', 'N/A', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'ABC', 'ABC', 'ABC', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000007', 'U100000000', '20080427', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '834009', '0651N/A', 'N/A', 'N/A', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'ABC', 'ABC', 'ABC', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000008', 'U100000000', '20080427', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '834009', '0651N/A', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'ABC', 'ABC', 'ABC', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000009', 'U100000000', '20080427', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '834009', '0651', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'ABC', 'ABC', 'ABC', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000010', 'U100000000', '20080427', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '834009', '0651', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'ABC', 'ABC', 'ABC', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000011', 'U100000000', '20080427', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '834009', '0651', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'ABC', 'ABC', 'ABC', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000012', 'U100000000', '20080427', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '834009', '0651', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'ABC', 'ABC', 'ABC', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000013', 'U100000000', '20080427', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '834009', '0651', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'ABC', 'ABC', 'ABC', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000014', 'U100000000', '20080427', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '834009', '0651', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'ABC', 'ABC', 'ABC', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000015', 'U100000000', '20080427', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '834009', '0651', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'ABC', 'ABC', 'ABC', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000016', 'U100000000', '20080427', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '834009', '0651N/A', 'N/A', 'N/A', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'ABC', 'ABC', 'ABC', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000017', 'U100000000', '20080427', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '834009', '0651', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'ABC', 'ABC', 'ABC', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000018', 'U100000000', '20080427', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '834009', '0651', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'ABC', 'ABC', 'ABC', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000019', 'U100000000', '20080427', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '834009', '0651', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'ABC', 'ABC', 'ABC', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000020', 'U100000000', '20080427', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '834009', '0651', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUMAN', 'V', 7, 'ABC', 'ABC', 'ABC', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000021', 'U100000001', '19720105', 'M', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '000000', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'VIJYA', 'V', 7, 'S.K SINGH', 'HUSBAND', 'SARBESH KUMAR SINGH', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000022', 'U100000021', '19720105', 'M', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '000000', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'VIJYA', 'V', 7, 'S.K SINGH', 'HUSBAND', 'SARBESH KUMAR SINGH', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000023', 'U100000021', '19720105', 'M', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '000000', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'VIJYA', 'V', 7, 'S.K SINGH', 'HUSBAND', 'SARBESH KUMAR SINGH', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000024', 'U100000021', '19720105', 'M', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '000000', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'VIJYA', 'V', 7, 'S.K SINGH', 'HUSBAND', 'SARBESH KUMAR SINGH', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000025', 'U100000021', '19720105', 'M', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '000000', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'VIJYA', 'V', 7, 'S.K SINGH', 'HUSBAND', 'SARBESH KUMAR SINGH', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000026', 'U100000021', '19720105', 'M', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '000000', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'VIJYA', 'V', 7, 'S.K SINGH', 'HUSBAND', 'SARBESH KUMAR SINGH', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000027', 'U100000021', '19720105', 'M', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '000000', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'VIJYA', 'V', 7, 'S.K SINGH', 'HUSBAND', 'SARBESH KUMAR SINGH', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000028', 'U100000021', '19720105', 'M', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '000000', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'VIJYA', 'V', 7, 'S.K SINGH', 'HUSBAND', 'SARBESH KUMAR SINGH', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000029', 'U100000021', '19720105', 'M', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '000000', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'VIJYA', 'V', 7, 'S.K SINGH', 'HUSBAND', 'SARBESH KUMAR SINGH', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000030', 'U100000021', '19621016', 'M', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '000000', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUDHA', 'V', 7, 'S.K SINGH', 'BROTHER', 'SARBESH KUMAR SINGH', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000031', 'U100000021', '19621016', 'F', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUDHA', 'V', 7, 'S.K SINGH', 'BROTHER', 'DR P.N SINGH', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000032', 'U100000021', '19621016', 'F', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'SUDHA', 'V', 7, 'S.K SINGH', 'BROTHER', 'DR P.N SINGH', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000033', 'U100000021', '19621016', 'F', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'KANTI', 'V', 7, 'S.K SINGH', 'SON', 'DR P.N SINGH', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000034', 'U100000021', '19621016', 'F', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'KANTI', 'V', 7, 'S.K SINGH', 'SON', 'DR P.N SINGH', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000035', 'U100000021', '19621016', 'F', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '', '', '', '20080531', 'Cash', '', '', '20080531', '', 'What is Your Pet Name', 'KANTI', 'V', 7, 'S.K SINGH', 'SON', 'DR P.N SINGH', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000036', 'U100000022', '19620304', 'F', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '', '', '', '20080601', 'Cash', '', '', '20080601', '', 'What is Your Pet Name', 'SADHNA', 'V', 7, 'B.K SINGH', 'HUSBAND', 'BRAJESH KR SINGH', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000037', 'U100000022', '19620304', 'F', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '', '', '', '20080601', 'Cash', '', '', '20080601', '', 'What is Your Pet Name', 'SADHNA', 'V', 7, 'B.K SINGH', 'HUSBAND', 'BRAJESH KR SINGH', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000038', 'U100000022', '19620304', 'F', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '', '', '', '20080601', 'Cash', '', '', '20080601', '', 'What is Your Pet Name', 'SADHNA', 'V', 7, 'B.K SINGH', 'HUSBAND', 'BRAJESH KR SINGH', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000039', 'U100000022', '19620304', 'F', 'PATNA', 'PATNA', 'BIHAR', 'India', '800002', '', '', '', '20080601', 'Cash', '', '', '20080601', '', 'What is Your Pet Name', 'KARUNA', 'V', 7, 'G JHA', 'HUSBAND', 'GANESH JHA', '', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000040', 'U100000022', '19750105', 'M', 'VISHNUYPURI,CHITKOHARA,P.O-ANISABAD', 'PATNA', 'BIHAR', 'India', '800002', '9334386346', '9334386346', '', '20080601', 'Cash', '', '', '20080601', '', 'What is Your Pet Name', 'RAM', 'V', 7, 'MAMTA KUMARI', 'WIFE', 'SRI GANGU PANDIT', 'Abu Dhabi Commercial Bank', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000041', 'U100000040', '19750105', 'M', 'VISHNUYPURI,CHITKOHARA,P.O-ANISABAD', 'PATNA', 'BIHAR', 'India', '800002', '9334386346', '9334386346', '', '20080601', 'Cash', '', '', '20080601', '', 'What is Your Pet Name', 'RAM', 'V', 7, 'MAMTA KUMARI', 'WIFE', 'SRI GANGU PANDIT', 'Abu Dhabi Commercial Bank', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000042', 'U100000040', '19750105', 'M', 'VISHNUYPURI,CHITKOHARA,P.O-ANISABAD', 'PATNA', 'BIHAR', 'India', '800002', '9334386346', '9334386346', '', '20080601', 'Cash', '', '', '20080601', '', 'What is Your Pet Name', 'RAM', 'V', 7, 'MAMTA KUMARI', 'WIFE', 'SRI GANGU PANDIT', 'Abu Dhabi Commercial Bank', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000043', 'U100000040', '19750105', 'M', 'VISHNUYPURI,CHITKOHARA,P.O-ANISABAD', 'PATNA', 'BIHAR', 'India', '800002', '9334386346', '9334386346', '', '20080601', 'Cash', '', '', '20080601', '', 'What is Your Pet Name', 'RAM', 'V', 7, 'MAMTA KUMARI', 'WIFE', 'SRI GANGU PANDIT', 'Abu Dhabi Commercial Bank', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000044', 'U100000040', '19750105', 'M', 'VISHNUYPURI,CHITKOHARA,P.O-ANISABAD', 'PATNA', 'BIHAR', 'India', '800002', '9334386346', '9334386346', '', '20080601', 'Cash', '', '', '20080601', '', 'What is Your Pet Name', 'RAM', 'V', 7, 'MAMTA KUMARI', 'WIFE', 'SRI GANGU PANDIT', 'Abu Dhabi Commercial Bank', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000045', 'U100000040', '19820814', 'F', 'A-31,ASHOKPURI,KHAJPURA,PATNA-14', 'PATNA', 'BIHAR', 'India', '800014', '', '09234222299', '', '20080601', 'Cash', '', '', '20080601', '', 'What is Your Pet Name', 'ARTI', 'V', 7, 'NAVEEN PRAKASH', 'HUSBAND', 'NAVEEN PRAKASH', 'Bank of India', 'BAILEY ROAD PATNA', '445810110000195', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000046', 'U100000022', '20080525', 'F', 'C/o Mathura Prasad,Sadpura, Neem Chowk', 'MuzaffarPur', 'Bihar', 'India', '842002', '', '0933911701', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'meera', 'V', 7, 'Vinod Kumar', 'Husband', 'Vinod Kumar', 'Abu Dhabi Commercial Bank', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000047', 'u100000046', '19630125', 'F', 'c/o sona hosiery,pashupatinath market,shitla gali,sutapatty,muzaffarpur', 'muzaffarpur', 'bihar', 'India', '842001', '', '09334908876', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'shyama', 'V', 7, 'Pradeep Kumar Banka', 'Husband', 'pradeep kumar banka', 'Abu Dhabi Commercial Bank', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000048', 'U100000047', '20080525', 'M', 'C/o Sona hosiery, PashupatiNath Market,Shitla Gali,Shuta Patti', 'Muzaffarpur', 'Bihar', 'India', '842001', '', '9334367700', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'pradeep', 'V', 7, 'Shyama Devi Banka', 'Wife', 'Sri Govind Lal Banka', 'Abu Dhabi Commercial Bank', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000049', 'U100000048', '19680101', 'M', 'C/o Mathura Prasad,Sadpura,Neem Chowk', 'Muzaffarpur', 'Bihar', 'India', '842001', '', '9334283070', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'vinod', 'V', 7, 'Shivam Anand', 'Son', 'Sri Mathur Prasad', 'Abu Dhabi Commercial Bank', '', '', '', '0', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000050', 'U100000000', '19700101', 'M', 'S/o GANGU PANDIT VISHNUPURI CHITKOHARA, ANISABAD', 'PATNA', 'Bihar', 'India', '800002', '', '9234868856', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'ram', 'V', 6, 'mamta kumari', 'wife', 'gangu pandit', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000051', 'U100000000', '19680101', 'M', 'VILL-DIHURI ,P.S-BAURI WELDARI ,DIST-JEHANABAD', 'JEHANABAD', 'BIHAR', 'India', '804407', '', 'O9234747046', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'paramanand', 'V', 6, 'abc', 'abc', 'abc', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000052', 'U100000000', '19690107', 'M', 'C/O SRI TULSI NARAYAN SINGH, VILL-RANIPUR ,P.O-PHULWARI SHARIF, PATNA', 'PATNA', 'bihar', 'India', '801505', '', '09234716192', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'dhananjay', 'V', 6, 'NEELAM DEVI', 'WIFE', 'SRI TULSI NARAYAN SINGH', 'Canara Bank', 'KHAGAUL, PATNA', '82520', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000053', 'U100000000', '19760715', 'M', 'KAUSHAL NAGAR ,QR NO-68,OPP-POLLO ROAD, ANISABAD,P', 'PATNA', 'BIHAR', 'India', '800001', '', '09234271614', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'deo', 'V', 6, 'MANJU DEVI', 'WIFE', 'sri BAIJNATH CHOUDHARY', 'Bank of India', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000054', 'U100000000', '19700101', 'M', 'S/O MAHAVIR PRASAD,VILL.-BAGHA KOL, P.O.-SALEMPUR', 'BHOJPUR', 'BIHAR', 'India', '802151', '', '9334456844', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'ravindra', 'V', 6, 'abc', 'abc', 'abc', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000055', 'U100000000', '19671111', 'M', 'C/O MR RAGHUNANDAN YADAV, ROAD NO- 11, QR NO- 19,GARDANIBAGH', 'PATNA', 'BIHAR', 'India', '800002', '', '09334371354', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'yogendra', 'V', 6, 'MEENA DEVI', 'WIFE', 'LATE KAMAL YADAV', 'Bank of India', 'ANISABAD,PATNA', '446010110000667', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000056', 'U100000000', '19671204', 'M', 'VILL-BANDHU BIGHA, P.O- PANDOUL, P.S- SHAKURABAD,', 'JEHANABAD', 'BIHAR', 'India', '804425', '', '09931426997', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'VIJAY', 'V', 6, 'KANTI DEVI', 'WIFE', 'LATE BHUNESHWAR PRASAD', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000057', 'U100000000', '19700101', 'M', 'DEVI MANDIR ROAD, NEAR RAM DEO BHWAN,PUNICHAK', 'PATNA', 'BIHAR', 'India', '800023', '', '', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'DHANAJAY', 'V', 6, 'ABC', 'ABC', 'ABC', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000058', 'U100000000', '19730101', 'M', 'S/O SRI ASHOK PRASAD , VILL-RANIPUR, P.O- PHULWARI', 'PATNA', 'BIHAR', 'India', '801505', '', '09835849239', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'DHEERAJ', 'V', 6, 'ABC', 'ABC', 'ABC', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000059', 'U100000000', '19780101', 'M', 'S/O SRI RAMESH RAM, VILL-RANIPUR, P.O-PHULWARI SHA', 'PATNA', 'BIHAR', 'India', '801505', '', '09234792628', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'JITENDRA', 'V', 6, 'ABC', 'ABC', 'ABC', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000060', 'U100000000', '19700101', 'M', 'VILL- BANDHU BIGHA, POST- PANDAUL, P.S- SHAKURABAD', 'JEHANABAD', 'BIHAR', 'India', '804425', '', '09934604734', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'ABDESH', 'V', 6, 'ABC', 'ABC', 'ABC', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000061', 'U100000000', '19750104', 'F', 'C/O MR PARAMANAND KUMAR, VILL-DIHURI,P.O-BAURI WELDARI, P.S- HULASGANJ', 'JEHANABAD', 'BIHAR', 'India', '804407', '', '09234747046', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'PRTIMA', 'V', 6, 'PARMANAND KUMAR', 'HUSBAND', 'PARMANAND KUMAR', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000062', 'U100000000', '19780418', 'M', 'S/O LATE RABINDRA KUMAR, VILL-RANIPUR, P.O-PHULWARISHRIF', 'PATNA', 'BIHAR', 'India', '801505', '', '9905497099', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'NAVEEN', 'V', 6, 'SHASHANK AYUSH', 'SON', 'LATE RAVINDRA KUMAR', 'State Bank of India', 'KHAGAUL, PATNA', '010645806514', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000063', 'U100000000', '19800101', 'M', 'C/O MR BHAGWAN PANDIT, CHITKOHRA BAZAR,ROAD NO-33,', 'PATNA', 'BIHAR', 'India', '800002', '', '9334401679', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'SANTOSH', 'V', 6, 'ABC', 'ABC', 'ABC', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000064', 'U100000000', '19730205', 'M', 'S/O SRI RAGHUBANSH NARAYAN SINGH POLICE COLONY, Q.NO-D/14, ANISABAD PATNA', 'PATNA', 'BIHAR', 'India', '800002', '', '9308385015', 'ramprakashsingh73@yahoo.co.in', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'RAM', 'V', 6, 'KUMARI SARITA SINGH', 'WIFE', 'sRI RAGHU BANSH NARAYAN SINGH', 'State Bank of India', 'ANISABAD, PATNA', '10129852162', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000065', 'U100000000', '19750501', 'M', 'C/O GANGU PANDIT VISHNUPURI CHITKOHARA ANISABAD', 'PATNA', 'BIHAR', 'India', '800002', '', '9835455578', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'JAI', 'V', 6, 'KAMENDRA KUMAR SINHA', 'PATNER', 'RAM PRAVESH PRABHAKAR', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000066', 'U100000050', '19690107', 'M', 'HOUSE NO-107, ROAD NO-6, SRI KRISHNA NAGAR, PATNA', 'PATNA', 'BIHAR', 'India', '800001', '', '9334127237', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'VINAY', 'V', 6, 'POONAM', 'WIFE', 'SHRI DEVENDRA NATH SINHA', 'State Bank of India', 'S.K. NAGAR, PATNA', '10223840283', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000067', 'U100000066', '19800101', 'M', 'JAMSEDPUR', 'JAMSEDPUR', 'JHARKHAND', 'India', '0', '', '09955230090', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'PRAMENDRA', 'V', 6, 'RITA SINHA', 'MOTHER', 'BHUPENDRA KR SINHA', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000068', 'U100000066', '19370204', 'M', 'C/O RAM NARESH PD SINGH,H.N-122,NORTH NEHRU NAGAR,PATNA', 'PATNA', 'BIHAR', 'India', '800013', '', '9973584611', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'HOSHIL', 'V', 6, 'BINAY KUMAR', 'SON', 'LATE RAMDHARI TIWARI', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000069', 'U100000050', '19860603', 'F', 'diwa colony, ramkrishana nagar,po-dhelwan,', 'PATNA', 'BIHAR', 'India', '800020', '', '9334490232', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'SUJATA', 'V', 6, 'PANKAJ PRABHAKAR', 'HUSBAD', 'PANKAJ PRABHAKAR', 'State Bank of India', 'sipara, patna', '30325074095', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000070', 'U100000050', '19771001', 'F', 'PATNA', 'PATNA', 'BIHAR', 'India', '800001', '', '', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'KIRAN', 'V', 6, 'SURAJ KUMAR', 'MOTHER', 'RADHA RAMAN PD', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000071', 'u100000045', '20080525', 'M', 'a-31,ashokpuri,khajpura,', 'patna', 'bihar', 'India', '800014', '', '9234222299', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'naveen', 'V', 6, 'naveen prakash', 'propri', 'abc', 'Canara Bank', 'RAZABAZAR PATNA', '2519201010222', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000072', 'u100000071', '19720423', 'M', 'a-31,ashokpuri,khajpura,', 'patna', 'bihar', 'India', '800014', '', '09234222299', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'naveen', 'V', 6, 'arti kumari', 'wife', 'dr k.p singh', 'Bank of India', 'BAILEY ROAD PATNA', '445810110000189', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000073', 'U100000071', '19720423', 'M', 'PATNA', 'PATNA', 'BIHAR', 'India', '800014', '', '', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'ASHUTOSH', 'V', 6, 'ABC', 'ABC', 'ABC', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000074', 'U100000073', '19780101', 'M', 'a-31,ashokpuri,khajpura,', 'PATNA', 'BIHAR', 'India', '800014', '', '', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'SHASHI', 'V', 6, 'CHADANI SINGH', 'SISTER', 'ABC', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000075', 'U100000073', '19820101', 'F', 'H.NO-407/B,STREET NO-9,Avtar NAGAR, JALANDHAR CITY,', 'JALANDHAR', 'PUNJAB', 'India', '144002', '01812207985', '09216207985', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'RAJNI', 'V', 6, 'BRIJESH KUMAR', 'Husband', 'BRIJESH KUMAR', 'Abu Dhabi Commercial Bank', 'AVTAR NAGAR', '640610110001692', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000076', 'U100000075', '19800101', 'M', 'a-31,ashokpuri,khajpura,', 'PATNA', 'BIHAR', 'India', '800014', '', '', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'SUDHIR', 'V', 6, 'ABC', 'ABC', 'ABC', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000077', 'U100000069', '19780110', 'M', 'C/O- SURENDRA PD , BIHAR STATE WAREHOUSHING CORPORATION,MAURYA LOK B-2, DAK BANGLOW ROAD,', 'PATNA', 'BIHAR', 'India', '800001', '', '9334544665', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'BHARAT', 'V', 6, 'MIRDULA DEVI', 'MOTHER', 'SRI SURENDRA PD', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000078', 'U100000065', '19720101', 'F', 'AT& P.O-B.V COOLEGE,BEHIND ROAD NO-10', 'PATNA', 'BIHAR', 'India', '800014', '', '', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'PRABHAWATI', 'V', 6, 'NAVEEN KUMAR', 'SON', 'SRI PALTU RAM', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000079', 'U100000000', '19700101', 'M', 'm.i.g-317,kankarbagh colony, patna-20', 'patna', 'BIHAR', 'India', '800020', '', '09334059733', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'SUNIL', 'V', 6, 'kanchan devi', 'wife', 'sri bharat chaudhary', 'State Bank of India', 'KRC,PATNA', '10173386231', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000080', 'U100000000', '19580101', 'M', 'AGAM KUAN SHITLA MANDIR ROAD, CHOTI PAHARI, PATNA', 'PATNA', 'BIHAR', 'India', '800007', '', '9334015036', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'ASHOK', 'V', 6, 'SUDHA KUMARI', 'wife', 'ABC', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000081', 'U100000000', '19700101', 'M', 'PATNA', 'PATNAI', 'BIHAR', 'India', '800002', '9835250438', '', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'VIJYA', 'V', 6, 'S.K SINGH', 'HUSBAND', 'S.K SINGH', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000082', 'U100000081', '19730210', 'M', 'ROAD NO-5A,ASHOK NAGAR,KANKARBAGH', 'PATNA', 'BIHAR', 'India', '800020', '', '', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'SUJIT', 'V', 6, 'MADHU SINGH', 'WIFE', 'R.P SINGH', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000083', 'U100000000', '19800701', 'M', 'RLY LOCO COLONY ,QR-NO-62GH, P.O-PATNA-1', 'PATNA', 'BIHAR', 'India', '800001', '06122358570', '09334520841', '', '20080603', 'Cash', '', '', '20080603', '', 'What is Your Pet Name', 'NISHANT', 'V', 6, 'GULABOO DEVI', 'MOTHE', 'GULABOO DEVI', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000084', 'U100000000', '19780101', 'M', 'DOYEN GYM,PATNA SUPER MARKET "B"BLOCK,FRASER ROAD', 'PATNA', 'BIHAR', 'India', '800001', '0000000', '0000000', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'amin', 'V', 6, 'abc', 'abc', 'abc', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000085', 'U100000000', '19800525', 'M', 'C/O DR PANCHANAN SINGH,ANISABAD,PATNA-2', 'PATNA', 'BIHAR', 'India', '800002', '06122251209', '9835250438', 'sarbeshksingh@sify.com', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'sunil', 'V', 6, 'abc', 'abc', 'abc', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000086', 'u100000049', '19630125', 'M', 'c/o sona hosiery', 'muzaffarpur', 'bihar', 'India', '842001', '00000', '0000000', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'shyama', 'V', 6, 'pradeep kumar banka', 'husband', 'pradeep kumar banka', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000087', 'u100000047', '19570808', 'M', 'c/o sonahosiery', 'muzaffarpur', 'bihar', 'India', '842001', '000000', '09334367700', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'pradeep', 'V', 6, 'shyama devi banka', 'wife', 'sri gouind lal banka', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000088', 'u100000048', '19630125', 'F', 'c/o sona hasiery pashupatinath market shitla gali sutapatty', 'muzaffarpur', 'bihar', 'India', '842001', '000000', '09334908876', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'shyama', 'V', 6, 'pradeep kumar banka', 'husband', 'pradeep kumar banka', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000089', 'u100000047', '19570808', 'M', 'c/o sona hosiery pashupatinath market shitla gali sutapatty', 'muzaffarpur', 'bihar', 'India', '842001', '000000', '09334367700', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'pradeep', 'V', 6, 'shyama devi banka', 'wife', 'sri govind lal banka', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000090', 'u100000048', '20080525', 'M', 'c/o sona hosiery m', 'muzaffarpur', 'bihar', 'India', '842001', '000000', '09431461105', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'dilip', 'V', 6, 'sanjay murarka', 'propriter', 'abc', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000091', 'u100000049', '19700705', 'F', 'c/o mathura prasad m', 'muzaffarpur', 'bihar', 'India', '842001', '00000', '09334911701', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'meera', 'V', 6, 'mohit anand', 'son', 'vinod kumar', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000092', 'u100000049', '19700705', 'M', 'c/o mathura prasad', 'muzaffarpur', 'bihar', 'India', '842001', '000000', '09334911701', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'meera', 'V', 6, 'mohit anand', 'son', 'vinod kumar', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000093', 'u100000046', '19680101', 'M', 'c/o mathura prasad', 'muzaffrpur', 'bihar', 'India', '842002', '000000', '09334283070', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'vinod', 'V', 6, 'shivam anand', 'son', 'mathura prasad', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000094', 'u100000046', '19680101', 'M', 'c/o mathura prasad', 'muzaffrpur', 'bihar', 'India', '842002', '000000', '09334283070', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'vinod', 'V', 6, 'shivam anand', 'son', 'mathura prasad', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000095', 'u100000049', '19730705', 'M', 'c/o mathura prasad', 'muzffarpur', 'bihar', 'India', '842002', '00000', '09334283070', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'man', 'V', 6, 'vinod kumar', 'abc', 'late gopal ji gupta', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000096', 'U100000000', '19760704', 'M', 'TIRUPATI MARBAL, NEAR JCROWN PLAZA PANDAY BHAWAN,', 'RANCHI', 'JHARKHAND', 'India', '834001', '0651', '9835161014', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'kamlesh', 'V', 6, 'GEETA KUMARI', 'WIFE', 'RAMESH CHANDRA PRASAD', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000097', 'u100000000', '19740101', 'M', 'ranchi', 'ranchi', 'jharkhand', 'India', '0', '000000', '000000', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'kapil', 'V', 6, 'abc', 'abc', 'abc', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000098', 'u100000000', '19770105', 'M', 'C/O pROF SURESH PRASAD, HAIDER ALI ROAD, HAIDER BUIDLING, KOKER RANCHI', 'ranchi', 'JHARKHAND', 'India', '834001', '00000000', '9835352319', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'amit', 'V', 6, 'ROHINI SARASWATI RAJ', 'DAUGHTER', 'SURESH PRASAD', 'State Bank of India', 'KOKER INDUSTRIAL AREA, RANCHI', '10330081832', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000099', 'u100000000', '19831225', 'F', 'ranchi', 'ranchi', 'Jharkhand', 'India', '834001', '000000', '00000000', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'sangita', 'V', 6, 'SAROJ THAKUR', 'MOTHER', 'A P L Thakur', 'Abu Dhabi Commercial Bank', '', '', '', '1', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000100', 'U100000000', '19800101', 'M', 'C/O-S.D.SINHA H.N.16B CHITRAGUPT COLONY ANISHABAD', 'PATNA', 'BIHAR', 'India', '800002', '00000', '9835833275', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'ghosh', 'V', 5, 'aniket', 'son', 'late bishwanath ghosh', 'State Bank of India', 's k puri sahdeo mahto marg patna', '10339111226', '', '2', 1100, 0)
GO


Ved Prakash Jha
Go to Top of Page

vedjha
Posting Yak Master

228 Posts

Posted - 2008-06-28 : 06:37:59
INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000101', 'u100000051', '19810102', 'M', 'harnichak p.o.anisabad', 'patna', 'bihar', 'India', '0', '0000000', '09308221823', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'nishant', 'V', 5, 'rita kumar', 'wife', 'sri surya deo singh', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000102', 'u100000101', '19561114', 'M', 'c/o ramchandra pandit new bye pass road .anisanad', 'patna', 'bihar', 'India', '800002', '000000', '9334170529', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'rabindra', 'V', 5, 'rajeev ranjan', 'son', 'shri rambarai p.d.shrivastav', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000103', 'u100000054', '19700102', 'M', 'vill+post-dalipur', 'buxar', 'bihar', 'India', '802130', '00000', '9931045945', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'jay', 'V', 5, 'tarra devi', 'wife', 'vinay dingh', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000104', 'u100000054', '19800116', 'M', 'at+po-dalipur ps-brahmpur dist-buxar', 'buxar', 'bihar', 'India', '802130', '0000', '9931045945', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'shiv', 'V', 5, 'sandhya devi', 'wife', 'vinay singh', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000105', 'u100000051', '19820423', 'F', 'chitkohara punjabi colony.anisabad', 'patna', 'bihar', 'India', '800002', '0000000', '09304327531', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'smt sony', 'V', 5, 'sanjeev kumar', 'husband', 'mr sanjeev kumar', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000106', 'U100000000', '19801003', 'M', 'S/O LATE RABINDRA KUMAR, VILL-RANIPUR, P.O-PHULWARI SHARIF', 'PATNA', 'BIHAR', 'India', '801505', '000000', '9835432891', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'PRAVIN', 'V', 5, 'REWATI DEVI', 'MOTHER', 'LATE RAVINDRA KUMAR', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000107', 'U100000000', '19750101', 'F', 'C/O DHANANJAY KUMAR, RANIPUR, PHULWARI SHARIF,PATNA', 'PATNA', 'BIHAR', 'India', '801505', '00000', '9234716192', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'NEELAM', 'V', 5, 'DHANANJAY KUMAR', 'HUSBAND', 'DHANANJAY KUMAR', 'State Bank of India', 'KHAGAUL, PATNA', '30244805925', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000108', 'U100000000', '19810101', 'M', 'S/O SRI RAM BACHAN PRASAD VILL-RANIPUR,P.O-PHULWAR', 'PATNA', 'BIHAR', 'India', '801505', '00000000', '09234441201', 'MANOJMOSL@YAHOO.COM', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'KUNAL', 'V', 5, 'ABC', 'ABC', 'ABC', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000109', 'U100000000', '19800101', 'M', 'S/O SRI SAKALDEO PRASAD, VILL- RANIPUR, POST- PHUL', 'PATNA', 'BIHAR', 'India', '801505', '000000000', '9334296648', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'DEEPAK', 'V', 5, 'ALOK KUMAR', 'BROTHER', 'ABC', 'State Bank of India', 'KHAGAUL, PATNA', '30404651270', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000110', 'U100000000', '19820101', 'M', 'S/O LATE SHYAM NARAYAN RAM, VILL- NOORPUR CHANDMAR', 'PATNA', 'BIHAR', 'India', '801503', '06115683707', '00000', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'GYAN', 'V', 5, 'ABC', 'ABC', 'ACB', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000111', 'U100000000', '19830101', 'M', 'KAUSHAL NAGAR, OPP- POLLO ROAD, Q.NO.- 68, ANISHAB', 'PATNA', 'BIHAR', 'India', '800002', '0000000', '09234271614', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'DEO', 'V', 5, 'ACB', 'ABC', 'ACB', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000112', 'U100000000', '19810102', 'M', 'C/O SRI RAMDAYAL SINGH,VILL-RANIPUR,PHULWARISHARIF', 'PATNA', 'BIHAR', 'India', '801505', '0000000', '9835600679', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'UTTAM', 'V', 5, 'ABC', 'ACB', 'ACB', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000113', 'U100000000', '19800101', 'M', 'C/O JAY MANGAL PRASAD, MOH-GOSHAI TOLA,PATLIPUTRA', 'PATNA', 'BIHAR', 'India', '800013', '0000000000', '09835230479', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'SHAILENDRA', 'V', 5, 'ABC', 'ABV', 'ABC', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000114', 'U100000000', '19840102', 'M', 'AT - ALKAPURI HOUSE NO. A/21 PO. - ANISABAD PATNA', 'PATNA', 'BIHAR', 'India', '800002', '00000', '9801440811', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'BIPIN', 'V', 5, 'SFS', 'ASDS', 'ABC', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000115', 'U100000000', '19700101', 'M', 'VILL P.O-SEONAN ,JEHANABAD,', 'JEHANABAD', 'BIHAR', 'India', '804454', '00000000', '09334707638', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'UDAY', 'V', 5, 'DSF', 'ASS', 'ACB', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000116', 'U100000000', '19800101', 'M', 'C/O SRI LAL MOHAR RAM ,AT-TETARIA,P.O-SALEMPUR,BHO', 'ARA', 'BIHAR', 'India', '808151', '0000000', '09939002490', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'SHYAM', 'V', 5, 'CVB', 'CBB', 'ABC', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000117', 'U100000000', '19800101', 'M', 'C/O SRI LALAN PRASAD MALAKAR,VILL- AMNAWA , P.O-BARAI', 'NALANDA', 'BIHAR', 'India', '801303', '0000000', '09334033823', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'pankaj', 'V', 5, 'SRI LALAN PRASAD MALAKAR', 'FATHER', 'sRI LALAN PRASAD MALAKAR', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000118', 'U100000000', '19760101', 'M', 'VILL- BISHUN PURA, POST- BERHETA, P.S-PARASH BIGHA', 'JEHANABAD', 'BIHAR', 'India', '804423', '0000000000000', '9934806175', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'RAM', 'V', 5, 'ASDF', 'ASDF', 'ASD', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000119', 'U100000000', '19780101', 'M', 'VILL- CHAMANDIH, POST- DHARAMPUR PONDIL,', 'ARWAL', 'BIHAR', 'India', '804421', '0000000000', '09955634226', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'DHANIK', 'V', 5, 'ASDASFD', 'ASD', 'ASD', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000120', 'U100000000', '19760101', 'M', 'VILL-PANDAUL, POST- PANDAUL, P.S- SHAKURABAD', 'JEHANABAD', 'BIHAR', 'India', '804425', '0000000000', '09931616352', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'LAKHAN', 'V', 5, 'ASD', 'ASD', 'ASD', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000121', 'U100000000', '19780101', 'M', 'C/O MR GANGO PANDIT,VISHNUPURI,ANISABAD,PATNA-2', 'PATNA', 'BIHAR', 'India', '800002', '0000000000', '9835455578', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'SUSHILA', 'V', 5, 'SANJEEV KUMAR', 'SON', 'SHRI GANGU PANDIT', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000122', 'U100000000', '19780101', 'M', 'S/O CHANRA BHUSHAN CHOUDRAY,Dr. AMBEDEKAR LENE, NE', 'PATNA', 'BIHAR', 'India', '800014', '0000000000', '09852229101', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'BARUN', 'V', 5, 'ASD', 'ASD', 'ASD', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000123', 'U100000000', '19780101', 'M', 'S/O DAVI DAYAL SINGH, VILL- USRI, POST- SHIKARPUR', 'PATNA', 'BIHAR', 'India', '801105', '0000000000', '9234868856', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'DHARMENDRA', 'V', 5, 'ASD', 'ASSD', 'ASD', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000124', 'U100000000', '19800101', 'F', 'W/O SRI MANOJ KUMAR RAM, VILL-RANIPUR, P.O-PHULWAR', 'PATNA', 'BIHAR', 'India', '801505', '00000000', '09304620615', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'AAA', 'V', 5, 'ASD', 'FDB', 'ASD', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000125', 'U100000000', '19800101', 'M', 'VILL-LODIPUR, P.O-KHIZAR PUR,GAYA', 'GAYA', 'BIHAR', 'India', '824233', '0000000000', '09852050985', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'KAMLESH', 'V', 5, 'SAKET PRASAD', 'FATHER', 'SAKET PRASAD', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000126', 'U100000000', '19800502', 'M', 'DHIRACHAK, P.O- ANISABAD,PATNA-2', 'PATNA', 'BIHAR', 'India', '800002', '06126943772', '000000000000', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'SANJAY', 'V', 5, 'PUSHLATA DEVI', 'WIFE', 'sri RAM NARAYAN RAI', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000127', 'U100000000', '19800101', 'F', 'C/O MR ANANT KUMAR (TEACHER) ,EKTA PATH, NEW BENGA', 'PATNA', 'BIHAR', 'India', '800001', '000000000', '09304366858', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'MANJU', 'V', 5, 'SDF', 'FDB', 'ASD', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000128', 'U100000000', '19840502', 'M', 'S/O JAY SHANKAR YADAV, NEW SPPAHI TOLA MARANGA,EAS', 'PURNEA', 'BIHAR', 'India', '854301', '9431097163', '9308190815', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'lalan', 'V', 5, 'amla devi', 'mother', 'ASD', 'State Bank of India', 'bazar branch purnia', '30231638403', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000129', 'U100000000', '19780101', 'M', 'VILL- BANDHU BIGHA, P.O-PANDAUL,P.S-SHAKURABAD, JE', 'JEHANABAD', 'BIHAR', 'India', '804425', '000000000', '09931426997', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'VIJAY', 'V', 5, 'FGDS', 'JHL', 'DAS', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000130', 'U100000000', '19800101', 'M', 'madhuban housing complex ,malahi pakri ,flat no', 'patna', 'bihar', 'India', '800020', '06122350227', '0000000000000', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'DEEPAK', 'V', 5, 'HGJ', 'SFD', 'FGJ', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000131', 'U100000000', '19860101', 'M', 'abc', 'patna', 'bihar', 'India', '800001', '0000000000', '00000000', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'SUPRIYA', 'V', 5, 'SFD', 'FDF', 'ASDF', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000132', 'U100000000', '19800101', 'M', 'VILL-BANDHU BIGHA, POST- PANDAUL, P.S- SHAKURA BAD', 'JEHANABAD', 'BIHAR', 'India', '804425', '000000000', '9334144702', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'RAJIV', 'V', 5, 'EWF', 'QWEF', 'ASD', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000133', 'U100000000', '19800101', 'M', 'C/O SRI SHAGUNI CHOUDHARY,VILL-NARSAND HABASPUR,P.', 'AURANGABAD', 'BIHAR', 'India', '834120', '00000000000', '09234271614', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'SHIV', 'V', 5, 'daDA', 'DFSDD', 'asd', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000134', 'U100000000', '19780101', 'M', 'NEAR SHEEBA CHILDREN ACDEMY, PO PS- KATIHAR, RAMPA', 'KATIHAR', 'BIHAR', 'India', '854105', '000000000', '09334468528', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'ANWAR', 'V', 5, 'Awd', 'DXWS', 'ASD', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000135', 'U100000000', '19800101', 'M', 'AT PO. DALLUPUR VIA - NIMEZ DIST - BUXAR.', 'BUXAR', 'BIHAR', 'India', '0', '000000000', '9939399187', '', '20080604', 'Cash', '', '', '20080604', '', 'What is Your Pet Name', 'ANIL', 'V', 5, 'FDDF', 'GDVGB', 'WQEEEEE', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000136', 'u100000070', '19730101', 'F', 'patna', 'PATNA', 'BIHAR', 'India', '800001', '000000', '0000000', '', '20080605', 'Cash', '', '', '20080605', '', 'What is Your Pet Name', 'sushma', 'V', 5, 'badri singh', 'husband', 'sri raj kr verma', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000137', 'u100000058', '19710614', 'M', 'r.n-2-d,ashapura k.n.t colony, near lakhonpatia,gujrat', 'gujrat', 'gujrat', 'India', '370105', '00000000', '0000000000', '', '20080605', 'Cash', '', '', '20080605', '', 'What is Your Pet Name', 'biswajit', 'V', 5, 'smt ranju devi', 'wife', 'sri sidhnath prasad', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000138', 'u100000127', '19700620', 'M', 'jehanabad road,p.o-masaurhi,patna', 'masaurhi', 'BIHAR', 'India', '804452', '000000', '9973611311', '', '20080605', 'Cash', '', '', '20080605', '', 'What is Your Pet Name', 'dinesh', 'V', 5, 'mrs kiran devi', 'wife', 'sri bhola prasad', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000139', 'u100000114', '19710601', 'M', 'vill&p.o-shihma,maray tola,begusarai', 'begusarai', 'BIHAR', 'India', '851101', '00000000000', '09931958432', '', '20080605', 'Cash', '', '', '20080605', '', 'What is Your Pet Name', 'pankaj', 'V', 5, 'punita devi', 'wife', 'sri brahmdev singh', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000140', 'u100000114', '19680101', 'M', 'c/o maheshwari brothers ltd,nearest of durga residency,behind m.l.a hostel,last gate dispur,guwahati', 'dishpur', 'guwahati', 'India', '781006', '00000000000', '09954190703', '', '20080605', 'Cash', '', '', '20080605', '', 'What is Your Pet Name', 'hemanto', 'V', 5, 'shani dvi', 'wife', 'father', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000141', 'U100000066', '19780721', 'F', 'PATNA', 'PATNA', 'BIHAR', 'India', '800001', '00000000000', '0000000000', '', '20080606', 'Cash', '', '', '20080606', '', 'What is Your Pet Name', 'POONAM', 'V', 5, 'VINAY KRISHNA', 'husband', 'JAGDISH LAL', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000142', 'U100000066', '19650701', 'F', 'H/O ASHOK KUMAR SRIVASTAVA,Q.NO-34/1/7,ROAD NO-12,ADITYAPUR-2,JAMSHEDPUR', 'JAMSHEDPUR', 'JHARKHAND', 'India', '0', '00000000000', '0000000000', '', '20080606', 'Cash', '', '', '20080606', '', 'What is Your Pet Name', 'SANDHYA', 'V', 5, 'ASHOK KUMAR SRIVASTAVA', 'husband', 'DEVENDRA NATHA SINHA', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000143', 'U100000068', '19630814', 'M', 'P.O&VILL-RADHI,GOVINDGANJ,EAST CHAMPARAN', 'GOVINDGANJ', 'BIHAR', 'India', '845458', '000000', '9973584611', '', '20080606', 'Cash', '', '', '20080606', '', 'What is Your Pet Name', 'RAJESHWAR', 'V', 5, 'SUMAN DEVI', 'wife', 'KAMLESHWAR TIWARI', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000144', 'U100000068', '19840214', 'M', 'P.O&VILL-RADHI,GOVINDGANJ,EAST CHAMPARAN', 'GOVINDGANJ', 'BIHAR', 'India', '845458', '000000', '9973584611', '', '20080606', 'Cash', '', '', '20080606', '', 'What is Your Pet Name', 'BRAJESH', 'V', 5, 'SUMAN DEVI', 'wife', 'NARAD TIWARI', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000145', 'u100000079', '19700430', 'F', 'C/OAVINASH.KUMAR-A/121.P.C.COLONY.KANKARBAGH.PATANA', 'PATNA', 'BIHAR', 'India', '800020', '', '9334497261', '', '20080607', 'Cash', '', '', '20080607', '', 'What is Your Pet Name', 'POONAM', 'V', 5, 'AVINASH KUMAR', 'husband', 'AVINASH KUMAR', 'Punjab National Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000146', 'U100000078', '19681012', 'M', 'VIJAY NAGAR,EAST OF PATELCHOWK BAILY ROAD,RUKANPURA', 'PATNA', 'BIHAR', 'India', '800014', '000000000', '09304637636', '', '20080607', 'Cash', '', '', '20080607', '', 'What is Your Pet Name', 'KUMAR', 'V', 5, 'SANGEETA SINGH', 'wife', 'SRI KUMAR DEVENDRA SINGH', 'Bank of India', 'bailey road patna', '445810110000274', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000147', 'U100000078', '19770907', 'M', 'LATE MD YUNISH KHAN,VILL-NAYA TOLA,PHULWARI SARIF,PATNA', 'PATNA', 'BIHAR', 'India', '801505', '0000000000000000', '00000000000000', '', '20080607', 'Cash', '', '', '20080607', '', 'What is Your Pet Name', 'ANJUM', 'V', 5, 'NASHIR ALI', 'SON', 'LATE MD YUNISH KHAN', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000148', 'U100000079', '19720101', 'M', 'MIG-317,KANKAR BAGH COLONY,PATNA', 'patna', 'BIHAR', 'India', '800020', '0000000000000', '0000000000000', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Date Of Birth', '01011972', 'V', 5, 'kanchan devi', 'wife', 'sri bharat choudhary', 'State Bank of India', 'KRC ,PATNA', '10173386231', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000149', 'U100000086', '19570808', 'M', 'muzaffarpur', 'muzaffarpur', 'bihar', 'India', '842001', '0000000000000000', '09934367700', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'pradeep', 'V', 5, 'shyama devi banka', 'wife', 'sri gobind lal banka', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000150', 'U100000069', '19780101', 'M', 'diwa colony,ramkrishana nagar,po- dhelwan', 'patna', 'bihar', 'India', '800020', '0', '9334490232', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Date Of Birth', 'pankaj', 'V', 5, 'sujata sinha', 'wife', 'fsd', 'State Bank of India', 'sipara, patna', '30403764206', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000151', 'U100000069', '19780101', 'M', 'diwa colony, ramkrishan nagar,po-dhelwan', 'patna', 'bihar', 'India', '800020', '000000000', '9334490232', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'kishun', 'V', 5, 'pankaj prabhakar', 'son', 'fsd', 'State Bank of India', 'kankarbagh,patna', '10533854566', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000152', 'U100000077', '19781008', 'M', 'patna', 'patna', 'bihar', 'India', '0', '', '0000000000000', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'bharat', 'V', 5, 'mirdula devi', 'mother', 'grfd', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000153', 'U100000077', '19650105', 'M', 'patna', 'patna', 'bihar', 'India', '800001', '000000000', '0000000000000', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'bharat', 'V', 5, 'bharat bhushan', 'son', 'late lakhan mahto', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000154', 'U100000000', '19780101', 'M', 'AT- GURMI, PO PS- MURHU, KHUNTI', 'RANCHI', 'JHARKHAND', 'India', '835216', '0000000000000', '9955525714', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'ajay', 'V', 5, 'sffd', 'fsd', 'daas', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000155', 'U100000000', '19640101', 'M', 'BARIATU', 'RANCHI', 'JHARKHAND', 'India', '834009', '0651', '0000000000000', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'achiever', 'V', 5, 'qwe', 'ffffffffff', 'qwe', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000156', 'U100000000', '19800101', 'F', '56 SET DORANDRA', 'RANCHI', 'JHARKHAND', 'India', '0', '0651', '9234110595', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'rani', 'V', 5, 'manish', 'husband', 'sdf', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000157', 'U100000000', '19760101', 'M', 'DORANDA', 'RANCHI', 'JHARKHNAD', 'India', '834002', '0651', '0000000000000', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'kameshwar', 'V', 5, 'vbv', 'nbnnm', 'jhh v', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000158', 'U100000072', '19591212', 'M', 'PATNA', 'PATNA', 'bihar', 'India', '800014', '000000000000', '09835421069', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'NARESH', 'V', 5, 'PRATIMA kumari', 'wife', 'ASD', 'Hdfc Bank Ltd.', 'PATNA', '02351600001306', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000159', 'U100000073', '19861122', 'F', 'PATNA', 'PATNA', 'bihar', 'India', '800020', '000000000', '000000', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'CHETNA', 'V', 5, 'VBC', 'KKN', 'HKKJK', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000160', 'U100000073', '19861122', 'M', 'VILL+PO.PAKRI ARRAH PS NAWADA DIST BHOJPUR', 'ARA', 'bihar', 'India', '802301', '000000000', '9973429683', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'AJITABH', 'V', 5, 'SIYARAM PODDAR', 'FATHER', 'SIYARAM PODDAR', 'State Bank of India', 'PAKRI ARRAH BHOJPUR', '30247127784', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000161', 'U100000074', '19870512', 'M', 'C/O RAM SWRATH PANDIT,ASHOK BHAWAN,VISHNUPURI,CHITKOHRA,P.O-ANISABAD,PATNA-2', 'PATNA', 'bihar', 'India', '800002', '0000000000', '9334032941', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'SHANKAR', 'V', 5, 'SUNITA DEVI', 'WIFE', 'SRI MUNDRIKA THAKUR', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000162', 'U100000074', '19800101', 'M', 'PATNA', 'PATNA', 'bihar', 'India', '800001', '0000000000', '0000000000', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'ABHIMANYU', 'V', 5, 'GVGS', 'FDG', 'SDFS', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000163', 'U100000074', '19800101', 'M', 'PATNA', 'PATNA', 'bihar', 'India', '800001', '0000000000', '0000000000', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'RAVI', 'V', 5, 'GVGS', 'FDG', 'SDFS', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000164', 'U100000074', '19770103', 'M', 'AT- SUDHI TOLA GALI, PO- MAHENDRU, PS- PIRBAHORE', 'PATNA', 'BIHAR', 'India', '800006', '0000000', '098355233139', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'SATYA', 'V', 5, 'SEEMA KASHYAP', 'WIFE', 'DHARMENDRA SINGH', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000165', 'U100000087', '19630125', 'F', 'C/O SONA HOSIERY PASHUPATINATH MARKET SHITLA GALI, SUTAPATTY', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '0000000', '09334908826', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'SHAYMA', 'V', 5, 'PRADEEP KUMAR BANKA', 'husband', 'PRADEEP KUMAR BANKA', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000166', 'U100000086', '19570808', 'M', 'C/O SONA HOSIERY PASHUPATINATH MARKET SHITLA GALI, SUTAPATTY', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '000000000000', '09334367700', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'PRADDEP', 'V', 5, 'SHAYMA DEVI BANKA', 'WIFE', 'GOVIND LAL BANKA', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000167', 'U100000087', '19630125', 'F', 'C/O SONA HOSIERY PASHUPATINATH MARKET SHITLA GALI, SUTAPATTY', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '00000000000', '09334908826', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'SHAYMA', 'V', 5, 'DEEPAK BANKA', 'SON', 'PRADEEP KUMAR BANKA', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000168', 'U100000086', '19570808', 'M', 'C/O SONA HOSIERY PASHUPATINATH MARKET SHITLA GALI, SUTAPATTY', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '000000000', '09334367700', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'PRADEEP', 'V', 5, 'SHAYMA DEVI BANKA', 'WIFE', 'GOVIND LAL BANKA', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000169', 'U100000087', '19630125', 'F', 'C/O SONA HOSIERY PASHUPATINATH MARKET SHITLA GALI, SUTAPATTY', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '000000000', '09334908826', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'SHYAMA', 'V', 5, 'DEEPAK BANKA', 'SON', 'PRADEEP KUMAR BANKA', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000170', 'U100000086', '19870808', 'M', 'C/O SONA HOSIERY PASHUPATINATH MARKET SHITLA GALI, SUTAPATTY', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '00000000000', '09334367700', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'PRADEEP', 'V', 5, 'SHAYMA DEVI BANKA', 'WIFE', 'GOVIND LAL BANKA', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000171', 'U100000087', '19630125', 'F', 'C/O SONA HOSIERY PASHUPATINATH MARKET SHITLA GALI, SUTAPATTY', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '00000000000', '09334908826', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'SHYAMA', 'V', 5, 'PRADEEP KUMAR BANKA', 'husband', 'PRADEEP KUMAR BANKA', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000172', 'U100000075', '19990101', 'M', 'brijealandharsh kr,jalandhar', 'jajandhar', 'punjab', 'India', '144002', '00000000000', '0000000000000', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'brijesh', 'V', 5, 'vbc', 'nbvv', 'ag', 'Abu Dhabi Commercial Bank', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000173', 'U100000087', '19570808', 'M', 'C/O SONA HOSIERY PASHUPATINATH MARKET SHITLA GALI, SUTAPATTY', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '00000000000', '09334367700', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'PRADEEP', 'V', 5, 'SHAYMA DEVI BANKA', 'WIFE', 'GOVIND LAL BANKA', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000174', 'U100000087', '19630125', 'F', 'C/O SONA HOSIERY PASHUPATINATH MARKET SHITLA GALI, SUTAPATTY', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '000000000000', '09334908826', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'SHYAMA', 'V', 5, 'PRADEEP KUMAR BANKA', 'husband', 'PRADEEP KUMAR BANKA', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000175', 'U100000087', '19850911', 'M', 'C/O SONA HOSIERY PASHUPATINATH MARKET SHITLA GALI, SUTAPATTY', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '0000000000', '9431461105', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'DEEPAK', 'V', 5, 'SHAYMA DEVI BANKA', 'MOTHER', 'PRADEEP KUMAR BANKA', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000176', 'U100000092', '19600101', 'M', 'C/O SHIVAM JEWELLERS GANDH CHOWK CHATA BAZAR', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '0000000000', '09955517398', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'VINOD', 'V', 5, 'USHA JAISWAL', 'WIFE', 'AS', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000177', 'U100000176', '19840202', 'M', 'C/O CHANDRA BHUGHAN CHOUDHARY', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '000000000', '9939196772', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'AMIT', 'V', 5, 'MEERA CHOUDHARY', 'MOTHER', 'CHANDRA BHUSHAN CHOUDHARY', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000178', 'U100000074', '19800101', 'M', 'PATNA', 'PATNA', 'BIHAR', 'India', '800001', '00000000000', '00000000000', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'shashi', 'V', 5, 'CHADANI SINGH', 'SISTER', 'fgf', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000179', 'U100000087', '19610312', 'F', 'C/O SONA HOSIERY PASHUPATINATH MARKET SHITLA GALI, SUTAPATTY', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '0000000000', '09334367700', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'SHYAMA', 'V', 5, 'DEEPAK BANKA', 'SON', 'PRADEEP KUMAR BANKA', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000180', 'U100000087', '19600101', 'M', 'C/O SHIVAM JEWELLERS GANDH CHOWK CHATA BAZAR', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '0000000000000', '0980000000179', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'DILIP', 'V', 5, 'SANJAY MURARAKA', 'PROPRITES', 'AS', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000181', 'U100000089', '19651214', 'F', 'C/O SONA HOSIERY PASHUPATINATH MARKET SHITLA GALI, SUTAPATTY', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '3997364', '', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'SANGITA', 'V', 5, 'SHAMBU NATH HIMMAT SINGH KUMAR', 'HUSBAND', 'SHAMBU NATH HIMMAT SINGH KUMAR', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000182', 'U100000092', '19600101', 'M', 'C/O SONA HOSIERY PASHUPATINATH MARKET SHITLA GALI, SUTAPATTY', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '00000000000', '00000000000', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'VINOD', 'V', 5, 'AS', 'WIFE', 'AS', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000183', 'U100000072', '20000101', 'M', 'PATNA', 'patna', 'BIHAR', 'India', '800014', '0000000000', '00000000', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'PCP', 'V', 5, 'NAVIN PRAKASH', 'PRO', 'sad', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000184', 'U100000072', '20000101', 'M', 'PATNA', 'patna', 'BIHAR', 'India', '800014', '0000000000', '00000000', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'PCP', 'V', 5, 'NAVIN PRAKASH', 'PRO', 'sad', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000185', 'U100000093', '19700705', 'F', 'C/O MATHURA PRASAD NEEM CHOWK', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '0000000000000000', '09334911701', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'MEERA', 'V', 5, 'MOHIT ANAND', 'SON', 'VINOD KUMAR', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000186', 'U100000093', '19700705', 'F', 'C/O MATHURA PRASAD NEEM CHOWK', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '00000000000', '9334911701', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'MEERA', 'V', 5, 'MOHIT ANAND', 'SON', 'VINOD KUMAR', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000187', 'U100000093', '19700705', 'F', 'C/O MATHURA PRASAD NEEM CHOWK', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '00000000000', '9334911701', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'MEERA', 'V', 5, 'MOHIT ANAND', 'SON', 'VINOD KUMAR', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000188', 'U100000094', '19700705', 'F', 'C/O MATHURA PRASAD NEEM CHOWK', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '0000000000', '9334911701', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'MEERA', 'V', 5, 'MOHIT ANAND', 'SON', 'VINOD KUMAR', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000189', 'U100000091', '19680101', 'M', 'C/O MATHURA PRASAD NEEM CHOWK', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '000000000000', '9334283070', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'VINOD', 'V', 5, 'SHIVAM ANAND', 'SON', 'MATHURA PRASAD', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000190', 'U100000092', '19690101', 'F', 'MUZAFFARPUR', 'muzaffarpur', 'BIHAR', 'India', '842001', '0000000000', '00000000000', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'meera', 'V', 5, 'vinod kumar', 'husband', 'vinod kumar', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000191', 'U100000091', '19300101', 'M', 'C/O MATHURA PRASAD NEEM CHOWK', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '', '9334983070', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'VINOD', 'V', 5, 'SHIVAM ANAND', 'SON', 'MATHURA PRASAD', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000192', 'U100000091', '19680101', 'M', 'C/O MATHURA PRASAD NEEM CHOWK', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '', '933428370', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'VINOD', 'V', 5, 'SHIVAM ANAND', 'SON', 'MATHURA PRASAD', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000193', 'U100000094', '19730701', 'M', 'SADPURA DURGASTHAN', 'muzaffarpur', 'BIHAR', 'India', '842001', '06212270524', '000000', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'DEVANAND', 'V', 5, 'KIRAN DEVI', 'WIFE', 'LATE FAKIRA LAL PRASAD', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000194', 'U100000092', '19680101', 'M', 'C/O MATHURA PRASAD NEEM CHOWK', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '000000000000', '9334283070', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'VINOD', 'V', 5, 'SHIVAM ANAND', 'SON', 'MATHURA PRASAD', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000195', 'U100000094', '19730701', 'M', 'SADPURA DURGASTHAN', 'muzaffarpur', 'BIHAR', 'India', '842001', '06212270524', '000000', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'RAJ', 'V', 5, 'SHOBHA GUPTA', 'WIFE', 'LATE MUNSHI SAH', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000196', 'U100000093', '19700705', 'M', 'C/O MATHURA PRASAD NEEM CHOWK', 'MUZZAFFARPUR', 'BIHAR', 'India', '842002', '0000000000000', '9334283070', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'MOHAN', 'V', 5, 'VINOD KUMAR', 'SON', 'LATE GOPAL GUPTA', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000197', 'U100000096', '19600101', 'M', 'C/O SHIVAM JEWELLERS GANDH CHOWK CHATA BAZAR', 'MUZZAFFARPUR', 'BIHAR', 'India', '842001', '000000000', '9334283070', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'MEERA', 'V', 5, 'VINOD KUMAR', 'HUSBAND', 'VINOD KUMAR', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000198', 'U100000076', '19780101', 'M', 'PATNA', 'PATNA', 'BIHAR', 'India', '800001', '0000000', '0000000000', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'SHAILENDRA', 'V', 5, 'UIY', 'GFD', 'FDH', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000199', 'U100000183', '20000101', 'M', 'PATNA', 'PATNA', 'BIHAR', 'India', '800014', '0000000000000', '0000000000000', '', '20080608', 'Cash', '', '', '20080608', '', 'What is Your Pet Name', 'PCP', 'V', 5, 'NAVEEN PRAKASH', 'PROP', 'ASC', '', '', '', '', '2', 1100, 0)
GO

INSERT INTO [Members] ([AID], [iSId], [dtDOB], [cSex], [vAddress], [vCity], [vState], [vCountry], [iPinCode], [vPhone], [vMobile], [vEmail], [dtDOJ], [ModePay], [BankName], [vChqNo], [dtDate], [vJoiningCity], [HintQues], [HintAns], [cStatus], [iCount], [vNominee], [vRelation], [vParents], [vAstBank], [vBranch], [vAcctno], [vPanNo], [cClosing], [dAmtPaid], [dAmtTran])
VALUES
('U100000200', 'U100000000', '19630405', 'M', 'RANCHI', 'RANCHI', 'JHARKHAND', 'India', '834004', '000000000', '98351155', '', '20080610', 'Cash', '', '', '20080610', '', 'What is Your Pet Name', 'barun', 'V', 4, 'as', 'wife', 'sa', '', '', '', '', '3', 1100, 0)
GO
--------------------------------------


Ved Prakash Jha
Go to Top of Page

vedjha
Posting Yak Master

228 Posts

Posted - 2008-06-28 : 06:38:38
directsppay :


CREATE TABLE [directsppay] (
[vid] bigint IDENTITY(1, 1) NOT NULL,
[vastid] varchar(50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[vspid] varchar(50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[cclosingno] int NULL,
[fpay] float NULL,
[dtcurrentdate] datetime NULL,
[cstatus] int CONSTRAINT [DF_directsppay_cstatus] DEFAULT (0) NULL
)
ON [PRIMARY]
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(1, 'U100000046', 'U100000022', 0, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(2, 'U100000047', 'u100000046', 0, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(3, 'U100000048', 'U100000047', 0, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(4, 'U100000049', 'U100000048', 0, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(5, 'U100000050', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(8, 'U100000053', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(9, 'U100000054', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(11, 'U100000056', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(12, 'U100000057', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(13, 'U100000058', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(14, 'U100000059', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(17, 'U100000062', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(19, 'U100000064', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(22, 'U100000067', 'U100000066', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(24, 'U100000069', 'U100000050', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(27, 'U100000072', 'u100000071', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(29, 'U100000074', 'U100000073', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(30, 'U100000075', 'U100000073', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(34, 'U100000079', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(35, 'U100000080', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(37, 'U100000082', 'U100000081', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(40, 'U100000085', 'U100000000', 1, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(43, 'U100000088', 'u100000048', 1, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(44, 'U100000089', 'u100000047', 1, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(47, 'U100000092', 'u100000049', 1, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(48, 'U100000093', 'u100000046', 1, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(49, 'U100000094', 'u100000046', 1, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(52, 'U100000097', 'u100000000', 1, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(6, 'U100000051', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(10, 'U100000055', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(21, 'U100000066', 'U100000050', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(28, 'U100000073', 'U100000071', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(32, 'U100000077', 'U100000069', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(33, 'U100000078', 'U100000065', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(51, 'U100000096', 'U100000000', 1, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(53, 'U100000098', 'u100000000', 1, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(7, 'U100000052', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(15, 'U100000060', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(18, 'U100000063', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(20, 'U100000065', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(23, 'U100000068', 'U100000066', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(25, 'U100000070', 'U100000050', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(26, 'U100000071', 'u100000045', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(31, 'U100000076', 'U100000075', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(38, 'U100000083', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(41, 'U100000086', 'u100000049', 1, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(42, 'U100000087', 'u100000047', 1, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(45, 'U100000090', 'u100000048', 1, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(46, 'U100000091', 'u100000049', 1, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(50, 'U100000095', 'u100000049', 1, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(16, 'U100000061', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(36, 'U100000081', 'U100000000', 1, 100, '20080603', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(39, 'U100000084', 'U100000000', 1, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(54, 'U100000099', 'u100000000', 1, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(55, 'U100000100', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(56, 'U100000101', 'u100000051', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(57, 'U100000102', 'u100000101', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(58, 'U100000103', 'u100000054', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(61, 'U100000106', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(63, 'U100000108', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(65, 'U100000110', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(68, 'U100000113', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(69, 'U100000114', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(70, 'U100000115', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(72, 'U100000117', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(74, 'U100000119', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(76, 'U100000121', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(78, 'U100000123', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(80, 'U100000125', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(83, 'U100000128', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(84, 'U100000129', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(88, 'U100000133', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(89, 'U100000134', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(93, 'U100000138', 'u100000127', 2, 100, '20080605', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(94, 'U100000139', 'u100000114', 2, 100, '20080605', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(97, 'U100000142', 'U100000066', 2, 100, '20080606', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(98, 'U100000143', 'U100000068', 2, 100, '20080606', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(100, 'U100000145', 'u100000079', 2, 100, '20080607', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(101, 'U100000146', 'U100000078', 2, 100, '20080607', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(103, 'U100000148', 'U100000079', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(105, 'U100000150', 'U100000069', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(107, 'U100000152', 'U100000077', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(109, 'U100000154', 'U100000000', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(110, 'U100000155', 'U100000000', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(113, 'U100000158', 'U100000072', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(114, 'U100000159', 'U100000073', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(116, 'U100000161', 'U100000074', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(117, 'U100000162', 'U100000074', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(119, 'U100000164', 'U100000074', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(122, 'U100000167', 'U100000087', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(124, 'U100000169', 'U100000087', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(128, 'U100000173', 'U100000087', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(131, 'U100000176', 'U100000092', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(133, 'U100000178', 'U100000074', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(134, 'U100000179', 'U100000087', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(136, 'U100000181', 'U100000089', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(137, 'U100000182', 'U100000092', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(139, 'U100000184', 'U100000072', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(141, 'U100000186', 'U100000093', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(142, 'U100000187', 'U100000093', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(144, 'U100000189', 'U100000091', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(145, 'U100000190', 'U100000092', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(148, 'U100000193', 'U100000094', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(153, 'U100000198', 'U100000076', 2, 100, '20080608', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(156, 'U100000201', 'U100000000', 3, 100, '20080610', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(162, 'U100000207', 'U100000067', 3, 100, '20080610', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(164, 'U100000209', 'U100000066', 3, 100, '20080610', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(167, 'U100000212', 'U100000066', 3, 100, '20080610', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(168, 'U100000213', 'U100000150', 3, 100, '20080610', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(169, 'U100000214', 'U100000000', 3, 100, '20080610', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(171, 'U100000216', 'U100000000', 3, 100, '20080610', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(172, 'U100000217', 'U100000152', 3, 100, '20080610', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(175, 'U100000220', 'U100000000', 3, 100, '20080610', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(180, 'U100000225', 'U100000079', 3, 100, '20080610', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(181, 'U100000226', 'U100000000', 3, 100, '20080610', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(59, 'U100000104', 'u100000054', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(60, 'U100000105', 'u100000051', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(62, 'U100000107', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(64, 'U100000109', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(66, 'U100000111', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(67, 'U100000112', 'U100000000', 2, 100, '20080604', 0)
GO

INSERT INTO [directsppay] ([vid], [vastid], [vspid], [cclosingno], [fpay], [dtcurrentdate], [cstatus])
VALUES
(71, 'U100000116', 'U100000000', 2, 100, '20080604', 0)
GO




-------------------------


Ved Prakash Jha
Go to Top of Page

vedjha
Posting Yak Master

228 Posts

Posted - 2008-06-28 : 06:39:16
Payment:


CREATE TABLE [Payment] (
[iid] bigint IDENTITY(1, 1) NOT NULL,
[vAstID] varchar(20) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[cClosingNo] varchar(10) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[iCount] int NULL,
[fPay] numeric(18, 0) NULL,
[dtCurrentDate] datetime NULL,
[cStatus] char(1) COLLATE SQL_Latin1_General_CP1_CI_AS CONSTRAINT [DF_Payment_cStatus] DEFAULT (0) NULL
)
ON [PRIMARY]
GO


INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(1, 'U100000000', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(2, 'U100000001', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(3, 'U100000002', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(4, 'U100000003', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(5, 'U100000004', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(6, 'U100000005', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(7, 'U100000006', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(8, 'U100000007', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(9, 'U100000008', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(10, 'U100000009', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(11, 'U100000010', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(12, 'U100000011', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(13, 'U100000012', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(14, 'U100000013', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(15, 'U100000014', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(16, 'U100000015', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(17, 'U100000016', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(18, 'U100000017', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(19, 'U100000018', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(20, 'U100000019', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(21, 'U100000020', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(22, 'U100000021', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(23, 'U100000022', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(24, 'U100000023', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(25, 'U100000024', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(26, 'U100000025', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(27, 'U100000026', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(28, 'U100000027', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(29, 'U100000028', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(30, 'U100000029', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(31, 'U100000030', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(32, 'U100000031', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(33, 'U100000032', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(34, 'U100000033', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(35, 'U100000034', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(36, 'U100000035', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(37, 'U100000036', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(38, 'U100000037', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(39, 'U100000038', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(40, 'U100000039', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(41, 'U100000040', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(42, 'U100000041', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(43, 'U100000042', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(44, 'U100000043', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(45, 'U100000044', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(46, 'U100000045', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(47, 'U100000046', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(48, 'U100000047', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(49, 'U100000048', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(50, 'U100000049', '0', 0, 0, '20080603', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(51, 'U100000050', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(52, 'U100000051', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(53, 'U100000052', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(54, 'U100000053', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(55, 'U100000054', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(56, 'U100000055', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(57, 'U100000056', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(58, 'U100000057', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(59, 'U100000058', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(60, 'U100000059', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(61, 'U100000060', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(62, 'U100000061', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(63, 'U100000062', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(64, 'U100000063', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(65, 'U100000064', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(66, 'U100000065', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(67, 'U100000066', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(68, 'U100000067', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(69, 'U100000068', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(70, 'U100000069', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(71, 'U100000070', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(72, 'U100000071', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(73, 'U100000072', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(74, 'U100000073', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(75, 'U100000074', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(76, 'U100000075', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(77, 'U100000076', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(78, 'U100000077', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(79, 'U100000078', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(80, 'U100000079', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(81, 'U100000080', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(82, 'U100000081', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(83, 'U100000082', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(84, 'U100000083', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(85, 'U100000084', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(86, 'U100000085', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(87, 'U100000086', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(88, 'U100000087', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(89, 'U100000088', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(90, 'U100000089', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(91, 'U100000090', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(92, 'U100000091', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(93, 'U100000092', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(94, 'U100000093', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(95, 'U100000094', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(96, 'U100000095', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(97, 'U100000096', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(98, 'U100000097', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(99, 'U100000098', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(100, 'U100000099', '1', 0, 0, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(101, 'U100000000', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(102, 'U100000001', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(103, 'U100000002', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(104, 'U100000003', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(105, 'U100000004', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(106, 'U100000005', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(107, 'U100000006', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(108, 'U100000007', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(109, 'U100000008', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(110, 'U100000009', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(111, 'U100000010', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(112, 'U100000011', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(113, 'U100000012', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(114, 'U100000013', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(115, 'U100000014', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(116, 'U100000015', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(117, 'U100000016', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(118, 'U100000017', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(119, 'U100000018', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(120, 'U100000019', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(121, 'U100000020', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(122, 'U100000021', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(123, 'U100000022', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(124, 'U100000023', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(125, 'U100000024', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(126, 'U100000025', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(127, 'U100000026', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(128, 'U100000027', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(129, 'U100000028', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(130, 'U100000029', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(131, 'U100000030', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(132, 'U100000031', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(133, 'U100000032', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(134, 'U100000033', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(135, 'U100000034', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(136, 'U100000035', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(137, 'U100000036', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(138, 'U100000037', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(139, 'U100000038', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(140, 'U100000039', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(141, 'U100000040', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(142, 'U100000041', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(143, 'U100000042', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(144, 'U100000043', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(145, 'U100000044', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(146, 'U100000045', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(147, 'U100000046', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(148, 'U100000047', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(149, 'U100000048', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(150, 'U100000049', '1', 1, 100, '20080604', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(151, 'U100000100', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(152, 'U100000101', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(153, 'U100000102', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(154, 'U100000103', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(155, 'U100000104', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(156, 'U100000105', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(157, 'U100000106', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(158, 'U100000107', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(159, 'U100000108', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(160, 'U100000109', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(161, 'U100000110', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(162, 'U100000111', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(163, 'U100000112', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(164, 'U100000113', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(165, 'U100000114', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(166, 'U100000115', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(167, 'U100000116', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(168, 'U100000117', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(169, 'U100000118', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(170, 'U100000119', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(171, 'U100000120', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(172, 'U100000121', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(173, 'U100000122', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(174, 'U100000123', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(175, 'U100000124', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(176, 'U100000125', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(177, 'U100000126', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(178, 'U100000127', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(179, 'U100000128', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(180, 'U100000129', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(181, 'U100000130', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(182, 'U100000131', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(183, 'U100000132', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(184, 'U100000133', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(185, 'U100000134', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(186, 'U100000135', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(187, 'U100000136', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(188, 'U100000137', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(189, 'U100000138', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(190, 'U100000139', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(191, 'U100000140', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(192, 'U100000141', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(193, 'U100000142', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(194, 'U100000143', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(195, 'U100000144', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(196, 'U100000145', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(197, 'U100000146', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(198, 'U100000147', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(199, 'U100000148', '2', 0, 0, '20080608', '0')
GO

INSERT INTO [Payment] ([iid], [vAstID], [cClosingNo], [iCount], [fPay], [dtCurrentDate], [cStatus])
VALUES
(200, 'U100000149', '2', 0, 0, '20080608', '0')
GO


---------------------------------------


Ved Prakash Jha
Go to Top of Page

vedjha
Posting Yak Master

228 Posts

Posted - 2008-06-28 : 06:39:52
levelpayment :

CREATE TABLE [levelpayment] (
[vid] bigint IDENTITY(1, 1) NOT NULL,
[vAstID] varchar(20) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[cClosingNo] varchar(10) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[lvl1] numeric(10, 0) NULL,
[lvl2] numeric(18, 0) NULL,
[lvl3] numeric(18, 0) NULL,
[lvl4] numeric(18, 0) NULL,
[lvl5] numeric(18, 0) NULL,
[dtCurrentDate] datetime NULL,
[cStatus] char(1) COLLATE SQL_Latin1_General_CP1_CI_AS CONSTRAINT [DF_levelpayment_cStatus] DEFAULT (0) NULL
)
ON [PRIMARY]
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(1, 'U100000000', '1', 690, 100, 220, 120, 45, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(2, 'U100000001', '1', 15, 140, 60, 80, 20, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(3, 'U100000002', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(4, 'U100000003', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(23, 'U100000022', '1', 90, 80, 40, 50, 30, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(24, 'U100000023', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(25, 'U100000024', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(26, 'U100000025', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(36, 'U100000035', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(37, 'U100000036', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(38, 'U100000037', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(39, 'U100000038', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(40, 'U100000039', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(46, 'U100000045', '1', 15, 20, 20, 10, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(47, 'U100000046', '1', 45, 30, 30, 40, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(64, 'U100000063', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(65, 'U100000064', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(66, 'U100000065', '1', 15, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(70, 'U100000069', '1', 15, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(71, 'U100000070', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(72, 'U100000071', '1', 30, 20, 10, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(76, 'U100000075', '1', 15, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(77, 'U100000076', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(78, 'U100000077', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(79, 'U100000078', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(92, 'U100000091', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(93, 'U100000092', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(99, 'U100000098', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(101, 'U100000000', '2', 525, 70, 30, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(102, 'U100000001', '2', 0, 0, 0, 0, 35, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(103, 'U100000002', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(104, 'U100000003', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(105, 'U100000004', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(106, 'U100000005', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(107, 'U100000006', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(108, 'U100000007', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(109, 'U100000008', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(110, 'U100000009', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(111, 'U100000010', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(112, 'U100000011', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(113, 'U100000012', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(114, 'U100000013', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(115, 'U100000014', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(116, 'U100000015', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(117, 'U100000016', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(118, 'U100000017', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(119, 'U100000018', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(120, 'U100000019', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(121, 'U100000020', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(122, 'U100000021', '2', 0, 0, 0, 70, 50, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(123, 'U100000022', '2', 0, 0, 70, 100, 25, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(124, 'U100000023', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(125, 'U100000024', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(126, 'U100000025', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(127, 'U100000026', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(128, 'U100000027', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(129, 'U100000028', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(130, 'U100000029', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(131, 'U100000030', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(135, 'U100000034', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(136, 'U100000035', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(137, 'U100000036', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(138, 'U100000037', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(139, 'U100000038', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(140, 'U100000039', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(143, 'U100000042', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(144, 'U100000043', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(145, 'U100000044', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(146, 'U100000045', '2', 0, 0, 50, 70, 5, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(147, 'U100000046', '2', 0, 70, 100, 0, 55, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(148, 'U100000047', '2', 0, 100, 0, 110, 5, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(150, 'U100000049', '2', 0, 110, 10, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(151, 'U100000050', '2', 0, 50, 40, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(153, 'U100000052', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(154, 'U100000053', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(159, 'U100000058', '2', 15, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(160, 'U100000059', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(161, 'U100000060', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(162, 'U100000061', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(163, 'U100000062', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(164, 'U100000063', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(165, 'U100000064', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(166, 'U100000065', '2', 0, 20, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(167, 'U100000066', '2', 30, 20, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(168, 'U100000067', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(170, 'U100000069', '2', 30, 20, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(171, 'U100000070', '2', 15, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(5, 'U100000004', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(6, 'U100000005', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(7, 'U100000006', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(8, 'U100000007', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(9, 'U100000008', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(10, 'U100000009', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(11, 'U100000010', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(12, 'U100000011', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(13, 'U100000012', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(14, 'U100000013', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(15, 'U100000014', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(16, 'U100000015', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(17, 'U100000016', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(18, 'U100000017', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(19, 'U100000018', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(20, 'U100000019', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(21, 'U100000020', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(22, 'U100000021', '1', 210, 60, 80, 40, 25, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(41, 'U100000040', '1', 75, 10, 20, 20, 5, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(42, 'U100000041', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(43, 'U100000042', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(49, 'U100000048', '1', 45, 40, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(67, 'U100000066', '1', 30, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(68, 'U100000067', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(69, 'U100000068', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(82, 'U100000081', '1', 15, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(83, 'U100000082', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(84, 'U100000083', '1', 0, 0, 0, 0, 0, '20080604', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(155, 'U100000054', '2', 30, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(156, 'U100000055', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(157, 'U100000056', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(158, 'U100000057', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(173, 'U100000072', '2', 45, 10, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(175, 'U100000074', '2', 75, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(176, 'U100000075', '2', 15, 10, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(177, 'U100000076', '2', 15, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(178, 'U100000077', '2', 30, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(180, 'U100000079', '2', 30, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(181, 'U100000080', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(183, 'U100000082', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(184, 'U100000083', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(185, 'U100000084', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(186, 'U100000085', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(190, 'U100000089', '2', 15, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(191, 'U100000090', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(194, 'U100000093', '2', 60, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(198, 'U100000097', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(199, 'U100000098', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(202, 'U100000101', '2', 15, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(203, 'U100000102', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(204, 'U100000103', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(205, 'U100000104', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(206, 'U100000105', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(207, 'U100000106', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(208, 'U100000107', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(209, 'U100000108', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO

INSERT INTO [levelpayment] ([vid], [vAstID], [cClosingNo], [lvl1], [lvl2], [lvl3], [lvl4], [lvl5], [dtCurrentDate], [cStatus])
VALUES
(210, 'U100000109', '2', 0, 0, 0, 0, 0, '20080608', '0')
GO


-------------------------


Ved Prakash Jha
Go to Top of Page

vedjha
Posting Yak Master

228 Posts

Posted - 2008-06-28 : 06:40:27
sponsoringpay:-

CREATE TABLE [sponsoringpay] (
[vid] bigint IDENTITY(1, 1) NOT NULL,
[vastid] varchar(50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[isid] varchar(50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[cclosingno] bigint NULL,
[paylevel] bigint NULL,
[fpay] decimal(18, 0) NULL,
[dtcurrentdate] datetime NULL,
[cstatus] int CONSTRAINT [DF_sponsoringpay_cstatus] DEFAULT (0) NULL
)
ON [PRIMARY]
GO


INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(1, 'U100000001', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(2, 'U100000002', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(3, 'U100000003', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(4, 'U100000004', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(5, 'U100000005', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(6, 'U100000006', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(7, 'U100000007', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(8, 'U100000008', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(9, 'U100000009', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(10, 'U100000010', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(11, 'U100000011', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(12, 'U100000012', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(13, 'U100000013', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(14, 'U100000014', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(15, 'U100000015', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(16, 'U100000016', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(17, 'U100000017', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(18, 'U100000018', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(19, 'U100000019', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(20, 'U100000020', 'U100000000', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(21, 'U100000050', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(22, 'U100000051', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(23, 'U100000052', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(24, 'U100000053', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(25, 'U100000054', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(26, 'U100000055', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(27, 'U100000056', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(28, 'U100000057', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(29, 'U100000058', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(30, 'U100000059', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(31, 'U100000060', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(32, 'U100000061', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(33, 'U100000062', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(34, 'U100000063', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(35, 'U100000064', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(36, 'U100000065', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(37, 'U100000079', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(38, 'U100000080', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(39, 'U100000081', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(40, 'U100000083', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(41, 'U100000084', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(42, 'U100000085', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(43, 'U100000096', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(44, 'U100000097', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(45, 'U100000098', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(46, 'U100000099', 'U100000000', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(47, 'U100000021', 'U100000001', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(48, 'U100000022', 'U100000021', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(49, 'U100000023', 'U100000021', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(50, 'U100000024', 'U100000021', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(51, 'U100000025', 'U100000021', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(52, 'U100000026', 'U100000021', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(53, 'U100000027', 'U100000021', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(54, 'U100000028', 'U100000021', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(55, 'U100000029', 'U100000021', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(56, 'U100000030', 'U100000021', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(57, 'U100000031', 'U100000021', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(58, 'U100000032', 'U100000021', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(59, 'U100000033', 'U100000021', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(60, 'U100000034', 'U100000021', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(61, 'U100000035', 'U100000021', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(62, 'U100000036', 'U100000022', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(63, 'U100000037', 'U100000022', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(64, 'U100000038', 'U100000022', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(65, 'U100000039', 'U100000022', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(66, 'U100000040', 'U100000022', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(67, 'U100000046', 'U100000022', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(68, 'U100000041', 'U100000040', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(69, 'U100000042', 'U100000040', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(70, 'U100000043', 'U100000040', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(71, 'U100000044', 'U100000040', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(72, 'U100000045', 'U100000040', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(73, 'U100000071', 'U100000045', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(74, 'U100000047', 'U100000046', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(75, 'U100000093', 'U100000046', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(76, 'U100000094', 'U100000046', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(77, 'U100000048', 'U100000047', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(78, 'U100000087', 'U100000047', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(79, 'U100000089', 'U100000047', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(80, 'U100000049', 'U100000048', 1, 2, 5, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(81, 'U100000088', 'U100000048', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(82, 'U100000090', 'U100000048', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(83, 'U100000086', 'U100000049', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(84, 'U100000091', 'U100000049', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(85, 'U100000092', 'U100000049', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(86, 'U100000095', 'U100000049', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(87, 'U100000066', 'U100000050', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(88, 'U100000069', 'U100000050', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(89, 'U100000070', 'U100000050', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(90, 'U100000078', 'U100000065', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(91, 'U100000067', 'U100000066', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(92, 'U100000068', 'U100000066', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(93, 'U100000077', 'U100000069', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(94, 'U100000072', 'U100000071', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(95, 'U100000073', 'U100000071', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(96, 'U100000074', 'U100000073', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(97, 'U100000075', 'U100000073', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(98, 'U100000076', 'U100000075', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(99, 'U100000082', 'U100000081', 1, 2, 0, '20080604', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(100, 'U100000001', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(101, 'U100000002', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(102, 'U100000003', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(103, 'U100000004', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(104, 'U100000005', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(105, 'U100000006', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(106, 'U100000007', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(107, 'U100000008', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(108, 'U100000009', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(109, 'U100000010', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(110, 'U100000011', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(111, 'U100000012', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(112, 'U100000013', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(113, 'U100000014', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(114, 'U100000015', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(115, 'U100000016', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(116, 'U100000017', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(117, 'U100000018', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(118, 'U100000019', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(119, 'U100000020', 'U100000000', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(120, 'U100000050', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(121, 'U100000051', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(122, 'U100000052', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(123, 'U100000053', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(124, 'U100000054', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(125, 'U100000055', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(126, 'U100000056', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(127, 'U100000057', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(128, 'U100000058', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(129, 'U100000059', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(130, 'U100000060', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(131, 'U100000061', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(132, 'U100000062', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(133, 'U100000063', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(134, 'U100000064', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(135, 'U100000065', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(136, 'U100000079', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(137, 'U100000080', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(138, 'U100000081', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(139, 'U100000083', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(140, 'U100000084', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(141, 'U100000085', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(142, 'U100000096', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(143, 'U100000097', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(144, 'U100000098', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(145, 'U100000099', 'U100000000', 2, 3, 5, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(146, 'U100000100', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(147, 'U100000106', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(148, 'U100000107', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(149, 'U100000108', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(150, 'U100000109', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(151, 'U100000110', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(152, 'U100000111', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(153, 'U100000112', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(154, 'U100000113', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(155, 'U100000114', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(156, 'U100000115', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(157, 'U100000116', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(158, 'U100000117', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(159, 'U100000118', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(160, 'U100000119', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(161, 'U100000120', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(162, 'U100000121', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(163, 'U100000122', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(164, 'U100000123', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(165, 'U100000124', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(166, 'U100000125', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(167, 'U100000126', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(168, 'U100000127', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(169, 'U100000128', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(170, 'U100000129', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(171, 'U100000130', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(172, 'U100000131', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(173, 'U100000132', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(174, 'U100000133', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(175, 'U100000134', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(176, 'U100000135', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(177, 'U100000154', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(178, 'U100000155', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(179, 'U100000156', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(180, 'U100000157', 'U100000000', 2, 3, 0, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(181, 'U100000021', 'U100000001', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(182, 'U100000022', 'U100000021', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(183, 'U100000023', 'U100000021', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(184, 'U100000024', 'U100000021', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(185, 'U100000025', 'U100000021', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(186, 'U100000026', 'U100000021', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(187, 'U100000027', 'U100000021', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(188, 'U100000028', 'U100000021', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(189, 'U100000029', 'U100000021', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(190, 'U100000030', 'U100000021', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(191, 'U100000031', 'U100000021', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(192, 'U100000032', 'U100000021', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(193, 'U100000033', 'U100000021', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(194, 'U100000034', 'U100000021', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(195, 'U100000035', 'U100000021', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(196, 'U100000036', 'U100000022', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(197, 'U100000037', 'U100000022', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(198, 'U100000038', 'U100000022', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(199, 'U100000039', 'U100000022', 2, 3, 10, '20080608', 0)
GO

INSERT INTO [sponsoringpay] ([vid], [vastid], [isid], [cclosingno], [paylevel], [fpay], [dtcurrentdate], [cstatus])
VALUES
(200, 'U100000040', 'U100000022', 2, 3, 10, '20080608', 0)
GO


----------------------

Ved Prakash Jha
Go to Top of Page

vedjha
Posting Yak Master

228 Posts

Posted - 2008-06-28 : 06:41:06
I have to generate payment closing wise.

Ved Prakash Jha
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-06-28 : 06:52:23
quote:
Originally posted by vedjha

I have to generate payment closing wise.

Ved Prakash Jha


why are you posting your insert queries? if you want to give sample data give 5 to 10 lines. thats enough. b/w i just missed out last part of your query and i'm posting modified one

select m.aid,m.cstatus as AssociateID,
sum(case when m.cstatus='V' and m.cclosing='1' then r.fpay else 0 end) as payment,
sum(r.lvl1)+sum(r.lvl2)+sum(r.lvl3)+sum(r.lvl4)+sum(r.lvl5) as levelpay ,
sum(r.dpay) as directsppay,
sum(r.spay) as sponsoringpay
from members m join
(
select cClosingno,
SUM(case when type='fpay' then value else 0 end) as fpay,
SUM(case when type='lvl1' then value else 0 end) as lvl1,
SUM(case when type='lvl2' then value else 0 end) as lvl2,
SUM(case when type='lvl3' then value else 0 end) as lvl3,
SUM(case when type='lvl4' then value else 0 end) as lvl4,
SUM(case when type='lvl5' then value else 0 end) as lvl5,
SUM(case when type='dpay' then value else 0 end) as dpay,
SUM(case when type='spay' then value else 0 end) as spay
FROM
(
select cClosingno,fpay as value,'fpay' as type
from payment p

union all

select cClosingno,lvl1,'lvl1'
from levelpayment
where cClosingno='1'

union all

select cClosingno,lvl2,'lvl2'
from levelpayment
where cClosingno='1'

union all

select cClosingno,lvl3,'lvl3'
from levelpayment
where cClosingno='1'

union all

select cClosingno,lvl4,'lvl4'
from levelpayment
where cClosingno='1'

union all

select cClosingno,lvl5,'lvl5'
from levelpayment
where cClosingno='1'

union all

select cClosingno,fpay,'dpay'
from directsppay
where cClosingno='1'

union all

select cClosingno,fpay,'spay'
from sponsoringpay
where cClosingno='1'
)t
group by t.cClosingno
)r
on r.cClosingno=m.cclosing
GROUP BY m.aid,m.cstatus
Go to Top of Page

vedjha
Posting Yak Master

228 Posts

Posted - 2008-06-28 : 07:13:51
sorry , for long data
actually I have shown all data in my page by program.
It is correct.
But in processing it takes more and more time to execute.
by which session ends in ASP.Net(pages).
I want to increase its performance.
plz short out my problem

Ved Prakash Jha
Go to Top of Page

vedjha
Posting Yak Master

228 Posts

Posted - 2008-06-28 : 07:15:28
sorry, your code doesn't satisfy me

Ved Prakash Jha
Go to Top of Page

vedjha
Posting Yak Master

228 Posts

Posted - 2008-06-28 : 07:34:29
plz help me...

Ved Prakash Jha
Go to Top of Page
    Next Page

- Advertisement -