You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
[20240401 WTAI V0.80]
|
|
|
|
create table J_JOB_DETAILS (
|
|
JobID NVARCHAR2(32) not null,
|
|
WellCode NVARCHAR2(32) not null,
|
|
ModelPara NVARCHAR2(32) not null,
|
|
ProcData BLOB,
|
|
Ext1 BLOB,
|
|
Remark NVARCHAR2(255),
|
|
primary key (JobID, WellCode, ModelPara)
|
|
On Conflict Replace);
|