Advertisement
daxruiz

tabla para manejo de eventos ftps

Apr 4th, 2023
1,223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.83 KB | None | 0 0
  1. USE [MERCEDES_ENTITY]
  2. GO
  3. /****** Object:  Table [dbo].[IntegratorTaskFptActions]    Script Date: 4/4/2023 3:37:09 PM ******/
  4. SET ANSI_NULLS ON
  5. GO
  6. SET QUOTED_IDENTIFIER ON
  7. GO
  8. CREATE TABLE [dbo].[IntegratorTaskFptActions](
  9.     [integrator_task_fpt_action_id] [INT] NOT NULL,
  10.     [integrator_task_id] [INT] NOT NULL,
  11.     [file_extension] [VARCHAR](50) NOT NULL,
  12.     [add_headers] [bit] NOT NULL,
  13.  CONSTRAINT [PK_IntegratorTaskFptActions] PRIMARY KEY CLUSTERED
  14. (
  15.     [integrator_task_fpt_action_id] ASC
  16. )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
  17. ) ON [PRIMARY]
  18. GO
  19. INSERT [dbo].[IntegratorTaskFptActions] ([integrator_task_fpt_action_id], [integrator_task_id], [file_extension], [add_headers]) VALUES (1, 2, N'.txt', 0)
  20. GO
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement