![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
After moving a procedure into a package I discovered I can no longer use "call" to invoke the procedure. Can someone explain why this is? Many TIA! old code: call p4_add(:typeid,:reposid,:depotFile,:rev,:tmstamp) new code (broken): call p4.add(:typeid,:reposid,:depotFile,:rev,:tmstamp) ORA-01747: invalid user.table.column,table.column, or column specification new code (works): begin p4asset.add(:typename,:repos,:depotFile,:rev); end |
#3
| |||
| |||
|
|
After moving a procedure into a package I discovered I can no longer use "call" to invoke the procedure. Can someone explain why this is? Many TIA! old code: call p4_add(:typeid,:reposid,:depotFile,:rev,:tmstamp) new code (broken): call p4.add(:typeid,:reposid,:depotFile,:rev,:tmstamp) ORA-01747: invalid user.table.column,table.column, or column specification new code (works): begin p4asset.add(:typename,:repos,:depotFile,:rev); end |
#4
| |||
| |||
|
|
After moving a procedure into a package I discovered I can no longer use "call" to invoke the procedure. Can someone explain why this is? Many TIA! old code: call p4_add(:typeid,:reposid,:depotFile,:rev,:tmstamp) new code (broken): call p4.add(:typeid,:reposid,:depotFile,:rev,:tmstamp) ORA-01747: invalid user.table.column,table.column, or column specification new code (works): begin p4asset.add(:typename,:repos,:depotFile,:rev); end |
#5
| |||
| |||
|
|
After moving a procedure into a package I discovered I can no longer use "call" to invoke the procedure. Can someone explain why this is? Many TIA! old code: call p4_add(:typeid,:reposid,:depotFile,:rev,:tmstamp) new code (broken): call p4.add(:typeid,:reposid,:depotFile,:rev,:tmstamp) ORA-01747: invalid user.table.column,table.column, or column specification new code (works): begin p4asset.add(:typename,:repos,:depotFile,:rev); end |
#6
| |||
| |||
|
|
m... (AT) pixar (DOT) com wrote: After *moving a procedure into a package I discovered I can no longer use "call" to invoke the procedure. Can someone explain why this is? Many TIA! old code: * *call p4_add(:typeid,:reposid,:depotFile,:rev,:tmstamp) new code (broken): * *call p4.add(:typeid,:reposid,:depotFile,:rev,:tmstamp) * *ORA-01747: invalid user.table.column,table.column, * * * * * * * or column specification new code (works): * *begin p4asset.add(:typename,:repos,:depotFile,:rev); end Are there typos in your posting? Because if not, then the solution would be obvious: CALL p4asset.add(:typename,:repos,:depotFile,:rev); Yours, Laurenz Albe- Hide quoted text - - Show quoted text - |
#7
| |||
| |||
|
|
m... (AT) pixar (DOT) com wrote: After *moving a procedure into a package I discovered I can no longer use "call" to invoke the procedure. Can someone explain why this is? Many TIA! old code: * *call p4_add(:typeid,:reposid,:depotFile,:rev,:tmstamp) new code (broken): * *call p4.add(:typeid,:reposid,:depotFile,:rev,:tmstamp) * *ORA-01747: invalid user.table.column,table.column, * * * * * * * or column specification new code (works): * *begin p4asset.add(:typename,:repos,:depotFile,:rev); end Are there typos in your posting? Because if not, then the solution would be obvious: CALL p4asset.add(:typename,:repos,:depotFile,:rev); Yours, Laurenz Albe- Hide quoted text - - Show quoted text - |
#8
| |||
| |||
|
|
m... (AT) pixar (DOT) com wrote: After *moving a procedure into a package I discovered I can no longer use "call" to invoke the procedure. Can someone explain why this is? Many TIA! old code: * *call p4_add(:typeid,:reposid,:depotFile,:rev,:tmstamp) new code (broken): * *call p4.add(:typeid,:reposid,:depotFile,:rev,:tmstamp) * *ORA-01747: invalid user.table.column,table.column, * * * * * * * or column specification new code (works): * *begin p4asset.add(:typename,:repos,:depotFile,:rev); end Are there typos in your posting? Because if not, then the solution would be obvious: CALL p4asset.add(:typename,:repos,:depotFile,:rev); Yours, Laurenz Albe- Hide quoted text - - Show quoted text - |
#9
| |||
| |||
|
|
m... (AT) pixar (DOT) com wrote: After *moving a procedure into a package I discovered I can no longer use "call" to invoke the procedure. Can someone explain why this is? Many TIA! old code: * *call p4_add(:typeid,:reposid,:depotFile,:rev,:tmstamp) new code (broken): * *call p4.add(:typeid,:reposid,:depotFile,:rev,:tmstamp) * *ORA-01747: invalid user.table.column,table.column, * * * * * * * or column specification new code (works): * *begin p4asset.add(:typename,:repos,:depotFile,:rev); end Are there typos in your posting? Because if not, then the solution would be obvious: CALL p4asset.add(:typename,:repos,:depotFile,:rev); Yours, Laurenz Albe- Hide quoted text - - Show quoted text - |
![]() |
| Thread Tools | |
| Display Modes | |
| |