Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. Hi,
  2.  
  3. We need DBA support to run the following sql which will create a new table in our Production db.
  4.  
  5. We don't foresee any issues with running this sql as it has been tested in our test environment. However, if an issue were to arise we may need your help diagnosing the fix. Furthermore, we are not currently sure that we can run this sql.
  6.  
  7. The sql needs to be run at a specific time during our release on Tuesday 19th November 8.30am. Will you be able to run the sql for us at that time and provide support afterwards if needed?
  8.  
  9.  
  10. INSERT INTO PRD_CMM.DB_SCHEMA_VERSION (VERSION_MAJOR, VERSION_MINOR, VERSION_POINT, SCRIPT_NUMBER) values (2,80,0,1);
  11.  
  12.  
  13.  
  14.  
  15. CREATE TABLE PRD_CMM.CMM_CONTENT_ASSET_MARKERS_MKR
  16. ( ID NUMBER(10,0) NOT NULL ENABLE,
  17. VAS_ID NUMBER(10,0) NOT NULL ENABLE,
  18. START_FRAME VARCHAR2(256),
  19. END_FRAME VARCHAR2(256),
  20. FIELD_ID VARCHAR2(256) NOT NULL ENABLE,
  21. CONSTRAINT PK_CMM_CAM_MKR PRIMARY KEY (ID),
  22. CONSTRAINT fK_CMM_CAM_MKR_VAS_ID FOREIGN KEY (VAS_ID) REFERENCES CMM_CONTENT_ASSET_CAS(VAS_ID));
  23.  
  24. CREATE SEQUENCE PRD_CMM.SEQ_CMM_CAM_MKR
  25. START WITH 1000
  26. MAXVALUE 999999999999999999999999999
  27. MINVALUE 1000
  28. NOCYCLE
  29. CACHE 20
  30. NOORDER;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement