| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- SET QUOTED_IDENTIFIER ON
- GO
- SET ANSI_NULLS ON
- GO
- CREATE VIEW [xtract].[Resource] AS
- SELECT [timestamp]
- , [No_]
- -- , [Type]
- -- , [Name]
- -- , [Search Name]
- -- , [Name 2]
- -- , [Address]
- -- , [Address 2]
- -- , [City]
- -- , [Social Security No_]
- -- , [Title]
- -- , [Education]
- -- , [Contract Class]
- -- , [Employment Date]
- -- , [Resource Group No_]
- -- , [Global Dimension 1 Code]
- -- , [Global Dimension 2 Code]
- -- , [Unit of Measure Code]
- -- , [Direct Unit Cost]
- -- , [Indirect Cost _]
- -- , [Unit Cost]
- -- , [Profit _]
- -- , [Price_Profit Calculation]
- -- , [Unit Price]
- -- , [Vendor No_]
- -- , [Last Date Modified]
- -- , [Blocked]
- -- , [Gen_ Prod_ Posting Group]
- -- , [Picture]
- -- , [Post Code]
- -- , [County]
- -- , [Automatic Ext_ Texts]
- -- , [No_ Series]
- -- , [Tax Group Code]
- -- , [VAT Prod_ Posting Group]
- -- , [Country_Region Code]
- -- , [IC Partner Purch_ G_L Acc_ No_]
- -- , [Address No_]
- -- , [Date of Update]
- -- , [Time of Update]
- -- , [Updated by User ID]
- -- , [Update Company]
- -- , [Last Name]
- -- , [First Name]
- -- , [Title Code]
- -- , [Resource Cost Group Code]
- , convert(float, [Efficiency _]) AS [Efficiency]
- -- , [Service Advisor No_]
- -- , [Employee No_]
- -- , [Location Code]
- -- , [Price per Day]
- -- , [Distance Incl_]
- -- , [Price per Distance]
- -- , [Amt_ Insurance]
- -- , [Amt_ Retention]
- -- , [Amt_ Comprehensive Insurance]
- -- , [Company Calendar Code]
- -- , [Absences In]
- -- , [Avg_ Hours per Day]
- -- , [Administrative]
- -- , [Main Company]
- -- , [Available from]
- -- , [Available to]
- -- , [VIN]
- -- , [Pers_ Calendar Templ_ Code]
- , [Client_DB]
- FROM [GC_TRANSIT_ARI].[import].[Resource]
- GO
- SET QUOTED_IDENTIFIER OFF
- GO
- SET ANSI_NULLS OFF
- GO
- GO
|