If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Informix > error insert

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 06-04-04, 08:15
georgipa georgipa is offline
Registered User
 
Join Date: Dec 2002
Location: Madrid - Spain
Posts: 283
error insert

hi,

I have an aplication development informix-4GL version 720 an the engine is informix-SE 7.24 where to do the follogind statement.

let inserta = "insert into tabla values (?,?,?,?)
prepare pp from inserta


execute pp using x1,x2,x3,x4
When I execute this statement the program show me the followind erorr

-710 Table <table-name> has been dropped, altered or renamed.

If anybody can help me with this problem thank you very much.
Reply With Quote
  #2 (permalink)  
Old 06-07-04, 10:22
gurey gurey is offline
Registered User
 
Join Date: Aug 2003
Location: Argentina
Posts: 780
Hi,

When a user has open a table and another user alters this table, when wanting to accede, the first user to the table, gives east error.
Please run update statistics after alter table.
Or can be a bug.

Gustavo.
Reply With Quote
  #3 (permalink)  
Old 06-08-04, 06:55
jh1213 jh1213 is offline
Registered User
 
Join Date: Jul 2003
Location: Beijing China
Posts: 36
database test
main
define i integer
define str char(40)
let str = "insert into tab1 values(?,?,?)"
let str = str clipped
prepare see from str
for i = 1 to 100
execute see using i,i,i
end for
end main

Linux test 2.4.18-3 #1 Thu Apr 18 07:37:53 EDT 2002 i686 unknown
IBM Informix Dynamic Server Version 9.40.UC2
IBM INFORMIX-4GL Version 7.32.UC1
IBM Informix CSDK Version 2.81, IBM Informix-ESQL Version 9.53.UC1


suggestion:
update statistics;
upgrade informix product;
__________________
MSN:jianghua1213@hotmail.com
Beijing China
http://www.91talk.net
http://www.91talk.com
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On