Search:

Type: Posts; User: expertsharingdotcom; Keyword(s):

Search: Search took 0.00 seconds.

  1. Answers
    4
    Views
    4,138

    SQL Re: an interesting topic

    use the execute immediate statement to do ddl statement in oracle
  2. Oracle Re: Which procedure will Oracle server take

    if you and the other user belongs to different schemas then two copy of same procedure will be created in two different schemas
  3. Answers
    6
    Views
    20,628

    Oracle Re: nth highest salary

    select emp_name,sal from (
    select emp_name, sal, rank() over (order by sal desc nulls last ) rn from emp) where rn= &var
  4. Answers
    3
    Views
    8,742

    Oracle Re: Call export from PL SQL

    use DBMS_DATAPUMP the best one to import or export from a pl/sql package
  5. SQL Re: Can we use procedures within Views

    Yes you can call a procedure inside a view by following the scenario.

    create a procedure or function which would return a ref cursor as an out parameter.

    if the name of the procedure is xyz
    ...
  6. Answers
    4
    Views
    3,685

    SQL Re: Which is faster

    it actually depends upon whether your table is having any primary key ? if there is any primary key ,then an associated index would be there . if there is an primary key in a table oracle only counts...
  7. SQL Re: Getting error if insert more than 100

    Write a insert before trigger for the table in the trigger write the logic in such a way count the rows on a particular date, if rows are greater than 100 raise_application error in the same way do...
  8. SQL Re: Extract the table name by using its column name

    select distinct table_name from user_tab_columns where column_name= 'value';
  9. Answers
    5
    Views
    4,143

    SQL Re: Grant

    login as sys, system
    grant sysdba to user
  10. Answers
    2
    Views
    3,281

    SQL Re: Insert in a table

    use the insert with select clause and also use the append hint which is used for direct path insertions.

    insert /*+ append */ into <tablename> select <query>;
  11. Answers
    9
    Views
    3,713

    SQL Re: please, help me

    My friend this works better for you in oracle

    select lpad('*',trunc(sal/1000),'*') from emp
Results 1 to 11 of 11
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact