Oracle
 sql >> Baza danych >  >> RDS >> Oracle

Jak wykonać procedurę składowaną w Oracle, która zawiera dwie instrukcje wstawiania?

Jak mówi błąd, przekazujesz złą liczbę lub typ parametrów.

Zdecydowanie polecam użycie składni nazwanych parametrów, jeśli próbujesz wywołać procedurę z tak wieloma parametrami. W przeciwnym razie ludzie mają trudności z zauważeniem, kiedy pomijają parametr lub przekazują parametry w złej kolejności, jeśli próbują dowiedzieć się, co przekazują dla 20. parametru do procedury. Osobiście miałem tendencję do refaktoryzacji procedury na długo przed próbą przekazania 20 parametrów. Coś tak prostego jak przekazanie jednego lub dwóch typów rekordów może znacznie ułatwić czytanie i zrozumienie kodu.

Zmieniłem Twoje wywołanie, aby używało nazwanych parametrów i dodałem komentarze dotyczące miejsc, w których popełniłeś błędy.

execute new_order(
  p_order_id => 4, -- Pass in a number rather than using implicit conversion
  p_order_num => 'O223PS562', 
  p_name => 'Test Test', 
  p_email => '[email protected]', 
  p_address => '123 Test Street', 
  p_city => 'Newcastle Upon Tyne', 
  p_province => 'Tyne and Wear', 
  p_postcode => 'NE98 4TN', 
  p_telephone => '123456789', 
  p_total => 7.97, -- Pass in a number rather than using implicit conversion
  p_order_date => to_date('11-apr-2021', 'DD-mon-YYYY'), -- Pass in a date rather than using implicit conversion
  p_order_item_id => 5, -- Pass in a number rather than using implicit conversion
  p_product_id => 4, -- Pass in a number rather than using implicit conversion
  p_seller_id => 2, -- Pass in a number rather than using implicit conversion 
  p_sub_order_number => 2, -- Pass in a number rather than using implicit conversion 
  p_quantity => 3073748221, -- Do you really want the quantity to be in the billions?  That seems unlikely.  
                            -- Perhaps there was supposed to be a phone number parameter
  p_condition => '2', -- That doesn't look like a condition.  Probably meant to be a unit price
  p_unit_price => 'Brand new', -- Here we have a definite error.  p_unit_price is a number but you can't connvert
                               -- the string 'Brand new' to a number.  I assume that was really supposed to be the
                               -- condition
  p_cost_charge => 1.99, -- Pass in a number rather than using implicit conversion
  '2.00' -- And here we have a value being passed in but no equivalent parameter
);    



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. SQL łączy się przez wiele wierszy

  2. Żądanie ustawione w menedżerze współbieżnym

  3. Nie można załadować pliku lub zestawu „Oracle.ManagedDataAccess.EntityFramework”

  4. Podłączanie oprogramowania IRI do Oracle

  5. executeSqlScript nie działa ze Springiem dla bloku PL/SQL