About 10,200,000 results
Open links in new tab
  1. What is the difference between := and = in Oracle PL/SQL

    Aug 21, 2014 · General declaration syntax in PL/SQL uses ':='.Look below variable_name datatype [NOT NULL := value ]; where, variable_name is the name of the variable. datatype is …

  2. What is the difference between SQL, PL-SQL and T-SQL?

    Jun 25, 2009 · PL/SQL is a language created by Oracle universe. PL/SQL combine programming procedural instructions and allows the creation of programs that operates directly on database …

  3. What does the (+) operator mean in a where-clause of PL/SQL?

    Jan 8, 2011 · Select Table1.attr1, Table1.attr2, Table2.attr3, Table2.attr4 From Tab1 Tabel1, Tab2 Tabel2 Where Tabel1.Attr = Tabel2.Attr (+) So what does the above mean? Is this a right …

  4. ORA-06502: PL/SQL: numeric or value error: character string buffer …

    PL/SQL: numeric or value error: character string buffer too small is due to the fact that you declare a string to be of a fixed length (say 20), and at some point in your code you assign it a value …

  5. How to declare and set variables in PL/SQL - Stack Overflow

    PROBLEM I am struggling to define variables in PL/SQL in T-SQL it is easy to declare & set variables and reference them in Select query (as below). But how would I do something similar …

  6. what is the difference between the & and : in PL/SQL in oracle?

    Apr 16, 2012 · 4 & has no meaning in PL/SQL, it is actually a SQL Plus feature (that has been copied in Toad, SQL Developer etc. for compatibility). In SQL Plus, & is used to define a …

  7. Oracle PL/SQL - How to create a simple array variable?

    I'd like to create an in-memory array variable that can be used in my PL/SQL code. I can't find any collections in Oracle PL/SQL that uses pure memory, they all seem to be associated with …

  8. oracle database - ORA-06502: PL/SQL: numeric or value error: raw ...

    Mar 18, 2021 · ORA-06502: PL/SQL: numeric or value error: raw variable length too long Asked 4 years, 9 months ago Modified 4 years, 7 months ago Viewed 10k times

  9. Splitting comma separated string in a PL/SQL stored proc

    Oct 23, 2010 · I've CSV string 100.01,200.02,300.03 which I need to pass to a PL/SQL stored procedure in Oracle. Inside the proc,I need to insert these values in a Number column in the …

  10. Difference between Script, Stored Procedure, T-SQL, PL/SQL

    May 14, 2014 · Here's some rough definitions to explain the differences. PL/SQL - a SQL variation specific to Oracle databases. T-SQL (Transact-SQL) - a SQL variation specific to Microsoft …