About 23,200,000 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. 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 …

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

    Apr 16, 2012 · I am stuying PL/SQL & I am going through the bind variable . I understood that the bind variable we used to pass RUN-TIME values. but what is the difference between …

  5. Store query result in a PL/pgSQL variable - Stack Overflow

    How to assign the result of a query to a variable in PL/pgSQL? I have a function:

  6. 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 …

  7. oracle database - pl sql %NOTFOUND - Stack Overflow

    Sep 23, 2015 · pl sql %NOTFOUND Asked 13 years, 1 month ago Modified 4 years, 11 months ago Viewed 111k times

  8. 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 …

  9. plsql - ORACLE SQL Developer Dark Mode - Stack Overflow

    Nov 22, 2021 · Is there any official method to use ORACLE Dark Mode?

  10. PL/SQL, how to escape single quote in a string? - Stack Overflow

    In the Oracle PL/SQL, how to escape single quote in a string ? I tried this way, it doesn't work.