Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

reported to have a DBTYPE of 130 at compile time and 5 at run time

Status
Not open for further replies.

robfromuk

MIS
Jan 14, 2004
7
CA
I've researched this thoroughly and just can't find the answer.

I'm trying to execute the following linked server query:

______________________________

INSERT EditReportReal(pid, seq, action_date, clientno)
SELECT t2.pid, t2.seq, t2.action_date, t2.clientno
FROM EditReportWorking t1
JOIN mytabledetails etct2 ON t1.pid = t2.pid

_______________________________

The problem arises as seq is defined with no length and no scale but as NOT NULL in Oracle (which I guess is the meaning of the error message).

As per I have set the following in my create table statement:

seq NUMERIC(10) NULL,

Though I'm not sure Microsoft even have it right there.

Can anyone help at all on this?

Much appreciated.
 
... hmm not sure how to edit my post there.

Tried setting NULL and NOT NULL ... same thing either way.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top