Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[iSplit_Disb_TempTran]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[iSplit_Disb_TempTran]
GO
PRINT 'CREATING TEMP TABLE'
CREATE TABLE [dbo].[iSplit_Disb_TempTran] (
[LoanID] [varchar] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
[HistoryCounter] [smallint] NOT NULL ,
[SeqID] [tinyint] NOT NULL ,
[TranDate] [datetime] NULL ,
[TranCode] [smallint] NULL ,
[TranAmt] [money] NULL ,
[TranType] [bit] NULL ,
[Used] [bit] NULL ,
[ClosingDate] [datetime] NULL ,
[DaysOpen] [int] NULL ,
[InterestAccrued] [money] NULL ,
[SysGen] [bit] NULL ,
[Balance] [money] NULL
) ON [PRIMARY]
GO