Script for uploading

download Script for uploading

of 111

Transcript of Script for uploading

  • 8/18/2019 Script for uploading

    1/111

    USE [ShowRoomManagement]GO/****** Object: Table [dbo].[Buyer] Script Date: 12-Dec-15 11:44:31 PM ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOSET ANSI_PADDING ONGOCREATE TABLE [dbo].[Buyer](

    [CNIC] [varchar](16) NOT NULL,[Name] [varchar](150) NOT NULL,[FatherName] [varchar](150) NULL,[Address] [varchar](250) NULL,[PhoneNumber] [varchar](20) NOT NULL,[PhoneNumber2] [varchar](20) NULL,[CreditRating] [varchar](50) NULL,[CreationDate] [datetime] NULL,

     CONSTRAINT [PK_Buyer] PRIMARY KEY CLUSTERED(

    [CNIC] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]

    ) ON [PRIMARY]

    GOSET ANSI_PADDING OFFGO/****** Object: Table [dbo].[Guarantor] Script Date: 12-Dec-15 11:44:32 PM ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOSET ANSI_PADDING ONGO

    CREATE TABLE [dbo].[Guarantor]([CNIC] [varchar](16) NOT NULL,[Name] [varchar](150) NOT NULL,[FatherName] [varchar](150) NULL,[Address] [varchar](250) NULL,[PhoneNumber] [varchar](20) NULL,[Remarks] [varchar](250) NULL,[CreationDate] [datetime] NULL,

     CONSTRAINT [PK__Guaranto__AA570FD5885D6986] PRIMARY KEY CLUSTERED(

    [CNIC] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]

    ) ON [PRIMARY]

    GOSET ANSI_PADDING OFFGO/****** Object: Table [dbo].[Installment] Script Date: 12-Dec-15 11:44:32 PM ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ON

  • 8/18/2019 Script for uploading

    2/111

    GOSET ANSI_PADDING ONGOCREATE TABLE [dbo].[Installment](

    [InstallmentID] [int] IDENTITY(1,1) NOT NULL,[InstallmentNumber] [int] NOT NULL,[InstallmentAmount] [money] NOT NULL,[Month] [varchar](50) NULL,[Year] [varchar](50) NULL,[DueDateStart] [datetime] NULL,[DueDateEnd] [datetime] NULL,[PaymentDate] [datetime] NULL,[PayedAmount] [money] NULL,[Late] [bit] NULL,[ReceivedBy] [varchar](150) NULL,[TotalAmountPayed] [money] NULL,[TotalAmountRemaining] [money] NULL,[CreationDate] [datetime] NOT NULL,[TransactionID] [int] NOT NULL,[IsPayed] [bit] NULL,

     CONSTRAINT [PK__Installm__42B42E621D82EA72] PRIMARY KEY CLUSTERED(

    [InstallmentID] ASC,[InstallmentNumber] ASC

    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]) ON [PRIMARY]

    GOSET ANSI_PADDING OFFGO/****** Object: Table [dbo].[PrintInstallment] Script Date: 12-Dec-15 11:44:32 PM ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGO

    SET ANSI_PADDING ONGOCREATE TABLE [dbo].[PrintInstallment](

    [ID] [int] IDENTITY(1,1) NOT NULL,[PrintDate] [datetime] NULL,[InstallmentNumber] [int] NULL,[InstallmentAmountPayable] [money] NULL,[InstallmentAmountPayed] [money] NULL,[Price] [money] NULL,[TotalAmountPayedTill] [money] NULL,[AdvanceAmount] [money] NULL,[TotalAmountPayedbyInstallment] [money] NULL,[TotalRemainingAmount] [money] NULL,

    [NextInstallmentDueDate] [datetime] NULL,[Comments] [varchar](150) NULL,[CustomerName] [varchar](150) NULL,[CustomerCNIC] [varchar](50) NULL,[EnginerNumber] [varchar](50) NULL,[ChasisNumber] [varchar](50) NULL,

     CONSTRAINT [PK_PrintInstallment] PRIMARY KEY CLUSTERED(

    [ID] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLO

  • 8/18/2019 Script for uploading

    3/111

    W_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]) ON [PRIMARY]

    GOSET ANSI_PADDING OFFGO/****** Object: Table [dbo].[TempInstallment] Script Date: 12-Dec-15 11:44:32 PM ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOSET ANSI_PADDING ONGOCREATE TABLE [dbo].[TempInstallment](

    [InstallmentID] [int] IDENTITY(1,1) NOT NULL,[InstallmentNumber] [int] NOT NULL,[InstallmentAmount] [money] NOT NULL,[Month] [varchar](50) NULL,[Year] [varchar](50) NULL,[DueDateStart] [date] NULL,[DueDateEnd] [date] NULL,[PaymentDate] [date] NULL,[PayedAmount] [money] NULL,

    [CreationDate] [date] NOT NULL,[TransactionID] [int] NULL, CONSTRAINT [PK_TempInstallment] PRIMARY KEY CLUSTERED(

    [InstallmentID] ASC,[InstallmentNumber] ASC

    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]) ON [PRIMARY]

    GOSET ANSI_PADDING OFFGO

    /****** Object: Table [dbo].[Transactions] Script Date: 12-Dec-15 11:44:32 PM ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOSET ANSI_PADDING ONGOCREATE TABLE [dbo].[Transactions](

    [TransactionId] [int] IDENTITY(1,1) NOT NULL,[VehicleID] [int] NOT NULL,[BuyerCNIC] [varchar](16) NOT NULL,[TransactionDate] [date] NOT NULL,

    [Remarks] [varchar](250) NULL,[GuarantorCNIC] [varchar](16) NOT NULL,[Price] [money] NULL,[AdvanceAmount] [money] NULL,

     CONSTRAINT [PK__Transact__55433A6B62793691] PRIMARY KEY CLUSTERED(

    [TransactionId] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]) ON [PRIMARY]

  • 8/18/2019 Script for uploading

    4/111

    GOSET ANSI_PADDING OFFGO/****** Object: Table [dbo].[Vehicle] Script Date: 12-Dec-15 11:44:32 PM ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOSET ANSI_PADDING ONGOCREATE TABLE [dbo].[Vehicle](

    [Id] [int] IDENTITY(1,1) NOT NULL,[EngineNumber] [varchar](50) NULL,[ChasisNumber] [varchar](50) NOT NULL,[Model] [varchar](50) NULL,[CC] [varchar](50) NULL,[Remarks] [varchar](150) NULL,[CreationDate] [datetime] NULL,[RegistrationNo] [varchar](50) NULL,[IsOld] [bit] NULL,

     CONSTRAINT [PK__Vehicle__3214EC073F253942] PRIMARY KEY CLUSTERED(

    [Id] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]) ON [PRIMARY]

    GOSET ANSI_PADDING OFFGOINSERT [dbo].[Buyer] ([CNIC], [Name], [FatherName], [Address], [PhoneNumber], [PhoneNumber2], [CreditRating], [CreationDate]) VALUES (N'', N'', N'', N'', N'', NULL, NULL, CAST(N'2015-09-20 04:32:54.473' AS DateTime))GOINSERT [dbo].[Buyer] ([CNIC], [Name], [FatherName], [Address], [PhoneNumber], [P

    honeNumber2], [CreditRating], [CreationDate]) VALUES (N'3110215551145', N'Saad Naseem', N'Naseem Jaleel', N'Gulshane Lahore Karachi', N'03457055195', NULL, NULL, CAST(N'2015-12-11 23:12:26.147' AS DateTime))GOINSERT [dbo].[Buyer] ([CNIC], [Name], [FatherName], [Address], [PhoneNumber], [PhoneNumber2], [CreditRating], [CreationDate]) VALUES (N'3110395958113', N'sohail', N'asghar', N'', N'03457057853', NULL, NULL, CAST(N'2015-10-18 13:42:43.577' AS DateTime))GOINSERT [dbo].[Buyer] ([CNIC], [Name], [FatherName], [Address], [PhoneNumber], [PhoneNumber2], [CreditRating], [CreationDate]) VALUES (N'3110419991111', N'Mahtab Rasheed', N'Rasheed Ahman', N'NO', N'03457055195', NULL, NULL, CAST(N'2015-10-12 23:24:53.940' AS DateTime))

    GOINSERT [dbo].[Buyer] ([CNIC], [Name], [FatherName], [Address], [PhoneNumber], [PhoneNumber2], [CreditRating], [CreationDate]) VALUES (N'3110419991145', N'Mahtab Rasheed', N'Rasheed Ahmad', N'82-C Gulshan-e-Lahore Town Lahore', N'03457055195', NULL, NULL, CAST(N'2015-09-19 17:47:15.740' AS DateTime))GOINSERT [dbo].[Buyer] ([CNIC], [Name], [FatherName], [Address], [PhoneNumber], [PhoneNumber2], [CreditRating], [CreationDate]) VALUES (N'3110419991154', N'Mahtab Rasheed', N'Rasheed Ahman', N'NO', N'03457055195', NULL, NULL, CAST(N'2015-09-19 20:33:46.567' AS DateTime))

  • 8/18/2019 Script for uploading

    5/111

    GOINSERT [dbo].[Guarantor] ([CNIC], [Name], [FatherName], [Address], [PhoneNumber], [Remarks], [CreationDate]) VALUES (N'', N'', N'', N'', N'', N'Testing Phase',NULL)GOINSERT [dbo].[Guarantor] ([CNIC], [Name], [FatherName], [Address], [PhoneNumber], [Remarks], [CreationDate]) VALUES (N'3110419991445', N'Junaid Ahmad', N'Ahmad', N'NO', N'03457055195', N'Testing Phase', NULL)GOINSERT [dbo].[Guarantor] ([CNIC], [Name], [FatherName], [Address], [PhoneNumber], [Remarks], [CreationDate]) VALUES (N'3110498909014', N'Rasheed Ahmad', N'AllaDin', N'Faqirwali Azeem Town', N'03347039795', N'Testing Phase', NULL)GOINSERT [dbo].[Guarantor] ([CNIC], [Name], [FatherName], [Address], [PhoneNumber], [Remarks], [CreationDate]) VALUES (N'3110512223355', N'Zubair Mali', N'Mlik Cueas', N'Koe na ', N'03336368592', N'Testing Phase', NULL)GOSET IDENTITY_INSERT [dbo].[Installment] ON

    GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (1, 1, 4500.0000, NULL, NULL, CAST(N'20

    15-10-01 00:00:00.000' AS DateTime), CAST(N'2016-07-10 00:00:00.000' AS DateTime), CAST(N'2015-10-06 00:00:00.000' AS DateTime), 4500.0000, 0, NULL, NULL, NULL, CAST(N'2015-09-19 00:00:00.000' AS DateTime), 2, 1)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (2, 2, 4500.0000, NULL, NULL, CAST(N'2015-10-01 00:00:00.000' AS DateTime), CAST(N'2016-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-19 00:00:00.000' AS DateTime), 2, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAm

    ount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (3, 3, 4500.0000, NULL, NULL, CAST(N'2015-10-01 00:00:00.000' AS DateTime), CAST(N'2016-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-19 00:00:00.000' AS DateTime), 2, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (4, 4, 4500.0000, NULL, NULL, CAST(N'2015-10-01 00:00:00.000' AS DateTime), CAST(N'2016-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-19 00:00:00.000' AS DateTime)

    , 2, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (5, 5, 4500.0000, NULL, NULL, CAST(N'2015-10-01 00:00:00.000' AS DateTime), CAST(N'2016-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-19 00:00:00.000' AS DateTime), 2, NULL)GO

  • 8/18/2019 Script for uploading

    6/111

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (6, 6, 4500.0000, NULL, NULL, CAST(N'2015-10-01 00:00:00.000' AS DateTime), CAST(N'2016-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-19 00:00:00.000' AS DateTime), 2, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (7, 7, 4500.0000, NULL, NULL, CAST(N'2015-10-01 00:00:00.000' AS DateTime), CAST(N'2016-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-19 00:00:00.000' AS DateTime), 2, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (8, 8, 4500.0000, NULL, NULL, CAST(N'2015-10-01 00:00:00.000' AS DateTime), CAST(N'2016-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-19 00:00:00.000' AS DateTime), 2, NULL)GO

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (9, 9, 4500.0000, NULL, NULL, CAST(N'2015-10-01 00:00:00.000' AS DateTime), CAST(N'2016-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-19 00:00:00.000' AS DateTime), 2, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (10, 1, 1666.0000, NULL, NULL, CAST(N'2015-11-01 00:00:00.000' AS DateTime), CAST(N'2016-08-10 00:00:00.000' AS DateTim

    e), CAST(N'2015-10-06 00:00:00.000' AS DateTime), 1666.0000, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, 1)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (11, 2, 1666.0000, NULL, NULL, CAST(N'2015-12-01 00:00:00.000' AS DateTime), CAST(N'2016-09-10 00:00:00.000' AS DateTime), CAST(N'2015-10-06 00:00:00.000' AS DateTime), 1666.0000, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, 1)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmoun

    t], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (12, 3, 1666.0000, NULL, NULL, CAST(N'2016-01-01 00:00:00.000' AS DateTime), CAST(N'2016-10-10 00:00:00.000' AS DateTime), CAST(N'2015-10-06 00:00:00.000' AS DateTime), 1666.0000, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, 1)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (13, 4, 1666.0000, NULL, NULL, CAST(N'2

  • 8/18/2019 Script for uploading

    7/111

    016-02-01 00:00:00.000' AS DateTime), CAST(N'2016-11-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (14, 5, 1666.0000, NULL, NULL, CAST(N'2016-03-01 00:00:00.000' AS DateTime), CAST(N'2016-12-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (15, 6, 1666.0000, NULL, NULL, CAST(N'2016-04-01 00:00:00.000' AS DateTime), CAST(N'2017-01-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (16, 7, 1666.0000, NULL, NULL, CAST(N'2

    016-05-01 00:00:00.000' AS DateTime), CAST(N'2017-02-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (17, 8, 1666.0000, NULL, NULL, CAST(N'2016-06-01 00:00:00.000' AS DateTime), CAST(N'2017-03-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAm

    ount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (18, 9, 1666.0000, NULL, NULL, CAST(N'2016-07-01 00:00:00.000' AS DateTime), CAST(N'2017-04-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (19, 10, 1666.0000, NULL, NULL, CAST(N'2016-08-01 00:00:00.000' AS DateTime), CAST(N'2017-05-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTim

    e), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (20, 11, 1666.0000, NULL, NULL, CAST(N'2016-09-01 00:00:00.000' AS DateTime), CAST(N'2017-06-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GO

  • 8/18/2019 Script for uploading

    8/111

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (21, 12, 1666.0000, NULL, NULL, CAST(N'2016-10-01 00:00:00.000' AS DateTime), CAST(N'2017-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (22, 13, 1666.0000, NULL, NULL, CAST(N'2016-11-01 00:00:00.000' AS DateTime), CAST(N'2017-08-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (23, 14, 1666.0000, NULL, NULL, CAST(N'2016-12-01 00:00:00.000' AS DateTime), CAST(N'2017-09-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GO

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (24, 15, 1666.0000, NULL, NULL, CAST(N'2017-01-01 00:00:00.000' AS DateTime), CAST(N'2017-10-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (25, 16, 1666.0000, NULL, NULL, CAST(N'2017-02-01 00:00:00.000' AS DateTime), CAST(N'2017-11-10 00:00:00.000' AS DateTi

    me), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (26, 17, 1666.0000, NULL, NULL, CAST(N'2017-03-01 00:00:00.000' AS DateTime), CAST(N'2017-12-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmoun

    t], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (27, 18, 1666.0000, NULL, NULL, CAST(N'2017-04-01 00:00:00.000' AS DateTime), CAST(N'2018-01-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (28, 19, 1666.0000, NULL, NULL, CAST(N'

  • 8/18/2019 Script for uploading

    9/111

    2017-05-01 00:00:00.000' AS DateTime), CAST(N'2018-02-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (29, 20, 1666.0000, NULL, NULL, CAST(N'2017-06-01 00:00:00.000' AS DateTime), CAST(N'2018-03-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (30, 21, 1666.0000, NULL, NULL, CAST(N'2017-07-01 00:00:00.000' AS DateTime), CAST(N'2018-04-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (31, 22, 1666.0000, NULL, NULL, CAST(N'

    2017-08-01 00:00:00.000' AS DateTime), CAST(N'2018-05-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (32, 23, 1666.0000, NULL, NULL, CAST(N'2017-09-01 00:00:00.000' AS DateTime), CAST(N'2018-06-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAm

    ount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (33, 24, 1666.0000, NULL, NULL, CAST(N'2017-10-01 00:00:00.000' AS DateTime), CAST(N'2018-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (34, 25, 1666.0000, NULL, NULL, CAST(N'2017-11-01 00:00:00.000' AS DateTime), CAST(N'2018-08-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTim

    e), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (35, 26, 1666.0000, NULL, NULL, CAST(N'2017-12-01 00:00:00.000' AS DateTime), CAST(N'2018-09-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GO

  • 8/18/2019 Script for uploading

    10/111

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (36, 27, 1666.0000, NULL, NULL, CAST(N'2018-01-01 00:00:00.000' AS DateTime), CAST(N'2018-10-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (37, 28, 1666.0000, NULL, NULL, CAST(N'2018-02-01 00:00:00.000' AS DateTime), CAST(N'2018-11-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (38, 29, 1666.0000, NULL, NULL, CAST(N'2018-03-01 00:00:00.000' AS DateTime), CAST(N'2018-12-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GO

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (39, 30, 1666.0000, NULL, NULL, CAST(N'2018-04-01 00:00:00.000' AS DateTime), CAST(N'2019-01-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (40, 31, 1666.0000, NULL, NULL, CAST(N'2018-05-01 00:00:00.000' AS DateTime), CAST(N'2019-02-10 00:00:00.000' AS DateTi

    me), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (41, 32, 1666.0000, NULL, NULL, CAST(N'2018-06-01 00:00:00.000' AS DateTime), CAST(N'2019-03-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmoun

    t], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (42, 33, 1666.0000, NULL, NULL, CAST(N'2018-07-01 00:00:00.000' AS DateTime), CAST(N'2019-04-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (43, 34, 1666.0000, NULL, NULL, CAST(N'

  • 8/18/2019 Script for uploading

    11/111

    2018-08-01 00:00:00.000' AS DateTime), CAST(N'2019-05-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (44, 35, 1666.0000, NULL, NULL, CAST(N'2018-09-01 00:00:00.000' AS DateTime), CAST(N'2019-06-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (45, 36, 1666.0000, NULL, NULL, CAST(N'2018-10-01 00:00:00.000' AS DateTime), CAST(N'2019-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 4, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (46, 1, 1750.0000, NULL, NULL, CAST(N'2

    015-11-01 00:00:00.000' AS DateTime), CAST(N'2016-08-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (47, 2, 1750.0000, NULL, NULL, CAST(N'2015-12-01 00:00:00.000' AS DateTime), CAST(N'2016-09-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAm

    ount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (48, 3, 1750.0000, NULL, NULL, CAST(N'2016-01-01 00:00:00.000' AS DateTime), CAST(N'2016-10-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (49, 4, 1750.0000, NULL, NULL, CAST(N'2016-02-01 00:00:00.000' AS DateTime), CAST(N'2016-11-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime

    ), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (50, 5, 1750.0000, NULL, NULL, CAST(N'2016-03-01 00:00:00.000' AS DateTime), CAST(N'2016-12-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GO

  • 8/18/2019 Script for uploading

    12/111

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (51, 6, 1750.0000, NULL, NULL, CAST(N'2016-04-01 00:00:00.000' AS DateTime), CAST(N'2017-01-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (52, 7, 1750.0000, NULL, NULL, CAST(N'2016-05-01 00:00:00.000' AS DateTime), CAST(N'2017-02-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (53, 8, 1750.0000, NULL, NULL, CAST(N'2016-06-01 00:00:00.000' AS DateTime), CAST(N'2017-03-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GO

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (54, 9, 1750.0000, NULL, NULL, CAST(N'2016-07-01 00:00:00.000' AS DateTime), CAST(N'2017-04-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (55, 10, 1750.0000, NULL, NULL, CAST(N'2016-08-01 00:00:00.000' AS DateTime), CAST(N'2017-05-10 00:00:00.000' AS DateTi

    me), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (56, 11, 1750.0000, NULL, NULL, CAST(N'2016-09-01 00:00:00.000' AS DateTime), CAST(N'2017-06-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmoun

    t], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (57, 12, 1750.0000, NULL, NULL, CAST(N'2016-10-01 00:00:00.000' AS DateTime), CAST(N'2017-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (58, 13, 1750.0000, NULL, NULL, CAST(N'

  • 8/18/2019 Script for uploading

    13/111

    2016-11-01 00:00:00.000' AS DateTime), CAST(N'2017-08-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (59, 14, 1750.0000, NULL, NULL, CAST(N'2016-12-01 00:00:00.000' AS DateTime), CAST(N'2017-09-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (60, 15, 1750.0000, NULL, NULL, CAST(N'2017-01-01 00:00:00.000' AS DateTime), CAST(N'2017-10-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (61, 16, 1750.0000, NULL, NULL, CAST(N'

    2017-02-01 00:00:00.000' AS DateTime), CAST(N'2017-11-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (62, 17, 1750.0000, NULL, NULL, CAST(N'2017-03-01 00:00:00.000' AS DateTime), CAST(N'2017-12-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAm

    ount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (63, 18, 1750.0000, NULL, NULL, CAST(N'2017-04-01 00:00:00.000' AS DateTime), CAST(N'2018-01-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (64, 19, 1750.0000, NULL, NULL, CAST(N'2017-05-01 00:00:00.000' AS DateTime), CAST(N'2018-02-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTim

    e), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (65, 20, 1750.0000, NULL, NULL, CAST(N'2017-06-01 00:00:00.000' AS DateTime), CAST(N'2018-03-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GO

  • 8/18/2019 Script for uploading

    14/111

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (66, 21, 1750.0000, NULL, NULL, CAST(N'2017-07-01 00:00:00.000' AS DateTime), CAST(N'2018-04-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (67, 22, 1750.0000, NULL, NULL, CAST(N'2017-08-01 00:00:00.000' AS DateTime), CAST(N'2018-05-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (68, 23, 1750.0000, NULL, NULL, CAST(N'2017-09-01 00:00:00.000' AS DateTime), CAST(N'2018-06-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GO

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (69, 24, 1750.0000, NULL, NULL, CAST(N'2017-10-01 00:00:00.000' AS DateTime), CAST(N'2018-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (70, 25, 1750.0000, NULL, NULL, CAST(N'2017-11-01 00:00:00.000' AS DateTime), CAST(N'2018-08-10 00:00:00.000' AS DateTi

    me), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (71, 26, 1750.0000, NULL, NULL, CAST(N'2017-12-01 00:00:00.000' AS DateTime), CAST(N'2018-09-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmoun

    t], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (72, 27, 1750.0000, NULL, NULL, CAST(N'2018-01-01 00:00:00.000' AS DateTime), CAST(N'2018-10-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (73, 28, 1750.0000, NULL, NULL, CAST(N'

  • 8/18/2019 Script for uploading

    15/111

    2018-02-01 00:00:00.000' AS DateTime), CAST(N'2018-11-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (74, 29, 1750.0000, NULL, NULL, CAST(N'2018-03-01 00:00:00.000' AS DateTime), CAST(N'2018-12-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (75, 30, 1750.0000, NULL, NULL, CAST(N'2018-04-01 00:00:00.000' AS DateTime), CAST(N'2019-01-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (76, 31, 1750.0000, NULL, NULL, CAST(N'

    2018-05-01 00:00:00.000' AS DateTime), CAST(N'2019-02-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (77, 32, 1750.0000, NULL, NULL, CAST(N'2018-06-01 00:00:00.000' AS DateTime), CAST(N'2019-03-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAm

    ount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (78, 33, 1750.0000, NULL, NULL, CAST(N'2018-07-01 00:00:00.000' AS DateTime), CAST(N'2019-04-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (79, 34, 1750.0000, NULL, NULL, CAST(N'2018-08-01 00:00:00.000' AS DateTime), CAST(N'2019-05-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTim

    e), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (80, 35, 1750.0000, NULL, NULL, CAST(N'2018-09-01 00:00:00.000' AS DateTime), CAST(N'2019-06-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GO

  • 8/18/2019 Script for uploading

    16/111

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (81, 36, 1750.0000, NULL, NULL, CAST(N'2018-10-01 00:00:00.000' AS DateTime), CAST(N'2019-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (82, 1, 1750.0000, NULL, NULL, CAST(N'2015-11-01 00:00:00.000' AS DateTime), CAST(N'2016-08-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (83, 2, 1750.0000, NULL, NULL, CAST(N'2015-12-01 00:00:00.000' AS DateTime), CAST(N'2016-09-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GO

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (84, 3, 1750.0000, NULL, NULL, CAST(N'2016-01-01 00:00:00.000' AS DateTime), CAST(N'2016-10-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (85, 4, 1750.0000, NULL, NULL, CAST(N'2016-02-01 00:00:00.000' AS DateTime), CAST(N'2016-11-10 00:00:00.000' AS DateTim

    e), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (86, 5, 1750.0000, NULL, NULL, CAST(N'2016-03-01 00:00:00.000' AS DateTime), CAST(N'2016-12-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmoun

    t], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (87, 6, 1750.0000, NULL, NULL, CAST(N'2016-04-01 00:00:00.000' AS DateTime), CAST(N'2017-01-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (88, 7, 1750.0000, NULL, NULL, CAST(N'2

  • 8/18/2019 Script for uploading

    17/111

    016-05-01 00:00:00.000' AS DateTime), CAST(N'2017-02-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (89, 8, 1750.0000, NULL, NULL, CAST(N'2016-06-01 00:00:00.000' AS DateTime), CAST(N'2017-03-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (90, 9, 1750.0000, NULL, NULL, CAST(N'2016-07-01 00:00:00.000' AS DateTime), CAST(N'2017-04-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (91, 10, 1750.0000, NULL, NULL, CAST(N'

    2016-08-01 00:00:00.000' AS DateTime), CAST(N'2017-05-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (92, 11, 1750.0000, NULL, NULL, CAST(N'2016-09-01 00:00:00.000' AS DateTime), CAST(N'2017-06-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAm

    ount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (93, 12, 1750.0000, NULL, NULL, CAST(N'2016-10-01 00:00:00.000' AS DateTime), CAST(N'2017-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (94, 13, 1750.0000, NULL, NULL, CAST(N'2016-11-01 00:00:00.000' AS DateTime), CAST(N'2017-08-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTim

    e), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (95, 14, 1750.0000, NULL, NULL, CAST(N'2016-12-01 00:00:00.000' AS DateTime), CAST(N'2017-09-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GO

  • 8/18/2019 Script for uploading

    18/111

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (96, 15, 1750.0000, NULL, NULL, CAST(N'2017-01-01 00:00:00.000' AS DateTime), CAST(N'2017-10-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (97, 16, 1750.0000, NULL, NULL, CAST(N'2017-02-01 00:00:00.000' AS DateTime), CAST(N'2017-11-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (98, 17, 1750.0000, NULL, NULL, CAST(N'2017-03-01 00:00:00.000' AS DateTime), CAST(N'2017-12-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GO

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (99, 18, 1750.0000, NULL, NULL, CAST(N'2017-04-01 00:00:00.000' AS DateTime), CAST(N'2018-01-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (100, 19, 1750.0000, NULL, NULL, CAST(N'2017-05-01 00:00:00.000' AS DateTime), CAST(N'2018-02-10 00:00:00.000' AS DateT

    ime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (101, 20, 1750.0000, NULL, NULL, CAST(N'2017-06-01 00:00:00.000' AS DateTime), CAST(N'2018-03-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmoun

    t], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (102, 21, 1750.0000, NULL, NULL, CAST(N'2017-07-01 00:00:00.000' AS DateTime), CAST(N'2018-04-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (103, 22, 1750.0000, NULL, NULL, CAST(N

  • 8/18/2019 Script for uploading

    19/111

    '2017-08-01 00:00:00.000' AS DateTime), CAST(N'2018-05-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (104, 23, 1750.0000, NULL, NULL, CAST(N'2017-09-01 00:00:00.000' AS DateTime), CAST(N'2018-06-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (105, 24, 1750.0000, NULL, NULL, CAST(N'2017-10-01 00:00:00.000' AS DateTime), CAST(N'2018-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (106, 25, 1750.0000, NULL, NULL, CAST(N

    '2017-11-01 00:00:00.000' AS DateTime), CAST(N'2018-08-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (107, 26, 1750.0000, NULL, NULL, CAST(N'2017-12-01 00:00:00.000' AS DateTime), CAST(N'2018-09-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAm

    ount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (108, 27, 1750.0000, NULL, NULL, CAST(N'2018-01-01 00:00:00.000' AS DateTime), CAST(N'2018-10-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (109, 28, 1750.0000, NULL, NULL, CAST(N'2018-02-01 00:00:00.000' AS DateTime), CAST(N'2018-11-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTi

    me), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (110, 29, 1750.0000, NULL, NULL, CAST(N'2018-03-01 00:00:00.000' AS DateTime), CAST(N'2018-12-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GO

  • 8/18/2019 Script for uploading

    20/111

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (111, 30, 1750.0000, NULL, NULL, CAST(N'2018-04-01 00:00:00.000' AS DateTime), CAST(N'2019-01-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (112, 31, 1750.0000, NULL, NULL, CAST(N'2018-05-01 00:00:00.000' AS DateTime), CAST(N'2019-02-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (113, 32, 1750.0000, NULL, NULL, CAST(N'2018-06-01 00:00:00.000' AS DateTime), CAST(N'2019-03-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GO

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (114, 33, 1750.0000, NULL, NULL, CAST(N'2018-07-01 00:00:00.000' AS DateTime), CAST(N'2019-04-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (115, 34, 1750.0000, NULL, NULL, CAST(N'2018-08-01 00:00:00.000' AS DateTime), CAST(N'2019-05-10 00:00:00.000' AS DateT

    ime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (116, 35, 1750.0000, NULL, NULL, CAST(N'2018-09-01 00:00:00.000' AS DateTime), CAST(N'2019-06-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmoun

    t], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (117, 36, 1750.0000, NULL, NULL, CAST(N'2018-10-01 00:00:00.000' AS DateTime), CAST(N'2019-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (118, 1, 1750.0000, NULL, NULL, CAST(N'

  • 8/18/2019 Script for uploading

    21/111

    2015-11-01 00:00:00.000' AS DateTime), CAST(N'2016-08-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (119, 2, 1750.0000, NULL, NULL, CAST(N'2015-12-01 00:00:00.000' AS DateTime), CAST(N'2016-09-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (120, 3, 1750.0000, NULL, NULL, CAST(N'2016-01-01 00:00:00.000' AS DateTime), CAST(N'2016-10-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (121, 4, 1750.0000, NULL, NULL, CAST(N'

    2016-02-01 00:00:00.000' AS DateTime), CAST(N'2016-11-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (122, 5, 1750.0000, NULL, NULL, CAST(N'2016-03-01 00:00:00.000' AS DateTime), CAST(N'2016-12-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAm

    ount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (123, 6, 1750.0000, NULL, NULL, CAST(N'2016-04-01 00:00:00.000' AS DateTime), CAST(N'2017-01-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (124, 7, 1750.0000, NULL, NULL, CAST(N'2016-05-01 00:00:00.000' AS DateTime), CAST(N'2017-02-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTim

    e), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (125, 8, 1750.0000, NULL, NULL, CAST(N'2016-06-01 00:00:00.000' AS DateTime), CAST(N'2017-03-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GO

  • 8/18/2019 Script for uploading

    22/111

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (126, 9, 1750.0000, NULL, NULL, CAST(N'2016-07-01 00:00:00.000' AS DateTime), CAST(N'2017-04-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (127, 10, 1750.0000, NULL, NULL, CAST(N'2016-08-01 00:00:00.000' AS DateTime), CAST(N'2017-05-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (128, 11, 1750.0000, NULL, NULL, CAST(N'2016-09-01 00:00:00.000' AS DateTime), CAST(N'2017-06-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GO

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (129, 12, 1750.0000, NULL, NULL, CAST(N'2016-10-01 00:00:00.000' AS DateTime), CAST(N'2017-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (130, 13, 1750.0000, NULL, NULL, CAST(N'2016-11-01 00:00:00.000' AS DateTime), CAST(N'2017-08-10 00:00:00.000' AS DateT

    ime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (131, 14, 1750.0000, NULL, NULL, CAST(N'2016-12-01 00:00:00.000' AS DateTime), CAST(N'2017-09-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmoun

    t], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (132, 15, 1750.0000, NULL, NULL, CAST(N'2017-01-01 00:00:00.000' AS DateTime), CAST(N'2017-10-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (133, 16, 1750.0000, NULL, NULL, CAST(N

  • 8/18/2019 Script for uploading

    23/111

    '2017-02-01 00:00:00.000' AS DateTime), CAST(N'2017-11-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (134, 17, 1750.0000, NULL, NULL, CAST(N'2017-03-01 00:00:00.000' AS DateTime), CAST(N'2017-12-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (135, 18, 1750.0000, NULL, NULL, CAST(N'2017-04-01 00:00:00.000' AS DateTime), CAST(N'2018-01-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (136, 19, 1750.0000, NULL, NULL, CAST(N

    '2017-05-01 00:00:00.000' AS DateTime), CAST(N'2018-02-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (137, 20, 1750.0000, NULL, NULL, CAST(N'2017-06-01 00:00:00.000' AS DateTime), CAST(N'2018-03-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAm

    ount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (138, 21, 1750.0000, NULL, NULL, CAST(N'2017-07-01 00:00:00.000' AS DateTime), CAST(N'2018-04-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (139, 22, 1750.0000, NULL, NULL, CAST(N'2017-08-01 00:00:00.000' AS DateTime), CAST(N'2018-05-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTi

    me), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (140, 23, 1750.0000, NULL, NULL, CAST(N'2017-09-01 00:00:00.000' AS DateTime), CAST(N'2018-06-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GO

  • 8/18/2019 Script for uploading

    24/111

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (141, 24, 1750.0000, NULL, NULL, CAST(N'2017-10-01 00:00:00.000' AS DateTime), CAST(N'2018-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (142, 25, 1750.0000, NULL, NULL, CAST(N'2017-11-01 00:00:00.000' AS DateTime), CAST(N'2018-08-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (143, 26, 1750.0000, NULL, NULL, CAST(N'2017-12-01 00:00:00.000' AS DateTime), CAST(N'2018-09-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GO

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (144, 27, 1750.0000, NULL, NULL, CAST(N'2018-01-01 00:00:00.000' AS DateTime), CAST(N'2018-10-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (145, 28, 1750.0000, NULL, NULL, CAST(N'2018-02-01 00:00:00.000' AS DateTime), CAST(N'2018-11-10 00:00:00.000' AS DateT

    ime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (146, 29, 1750.0000, NULL, NULL, CAST(N'2018-03-01 00:00:00.000' AS DateTime), CAST(N'2018-12-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmoun

    t], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (147, 30, 1750.0000, NULL, NULL, CAST(N'2018-04-01 00:00:00.000' AS DateTime), CAST(N'2019-01-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (148, 31, 1750.0000, NULL, NULL, CAST(N

  • 8/18/2019 Script for uploading

    25/111

    '2018-05-01 00:00:00.000' AS DateTime), CAST(N'2019-02-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (149, 32, 1750.0000, NULL, NULL, CAST(N'2018-06-01 00:00:00.000' AS DateTime), CAST(N'2019-03-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (150, 33, 1750.0000, NULL, NULL, CAST(N'2018-07-01 00:00:00.000' AS DateTime), CAST(N'2019-04-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (151, 34, 1750.0000, NULL, NULL, CAST(N

    '2018-08-01 00:00:00.000' AS DateTime), CAST(N'2019-05-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (152, 35, 1750.0000, NULL, NULL, CAST(N'2018-09-01 00:00:00.000' AS DateTime), CAST(N'2019-06-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAm

    ount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (153, 36, 1750.0000, NULL, NULL, CAST(N'2018-10-01 00:00:00.000' AS DateTime), CAST(N'2019-07-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (154, 1, 1750.0000, NULL, NULL, CAST(N'2015-11-01 00:00:00.000' AS DateTime), CAST(N'2016-08-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTim

    e), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (155, 2, 1750.0000, NULL, NULL, CAST(N'2015-12-01 00:00:00.000' AS DateTime), CAST(N'2016-09-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GO

  • 8/18/2019 Script for uploading

    26/111

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (156, 3, 1750.0000, NULL, NULL, CAST(N'2016-01-01 00:00:00.000' AS DateTime), CAST(N'2016-10-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (157, 4, 1750.0000, NULL, NULL, CAST(N'2016-02-01 00:00:00.000' AS DateTime), CAST(N'2016-11-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (158, 5, 1750.0000, NULL, NULL, CAST(N'2016-03-01 00:00:00.000' AS DateTime), CAST(N'2016-12-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GO

    INSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (159, 6, 1750.0000, NULL, NULL, CAST(N'2016-04-01 00:00:00.000' AS DateTime), CAST(N'2017-01-10 00:00:00.000' AS DateTime), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [CreationDate], [TransactionID], [IsPayed]) VALUES (160, 7, 1750.0000, NULL, NULL, CAST(N'2016-05-01 00:00:00.000' AS DateTime), CAST(N'2017-02-10 00:00:00.000' AS DateTi

    me), NULL, NULL, 0, NULL, NULL, NULL, CAST(N'2015-09-20 00:00:00.000' AS DateTime), 5, NULL)GOINSERT [dbo].[Installment] ([InstallmentID], [InstallmentNumber], [InstallmentAmount], [Month], [Year], [DueDateStart], [DueDateEnd], [PaymentDate], [PayedAmount], [Late], [ReceivedBy], [TotalAmountPayed], [TotalAmountRemaining], [C