Search:

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

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Answers
    4
    Views
    4,170

    Oracle Re: Cursor for loop

    Cursor for loop,

    For loop will fetch data for certain limitation but cursor for loop will fetch records upto end of the where clause and store it in cursor variable.
  2. Answers
    2
    Views
    3,278

    Oracle Re: sql file problem

    please provide the .sql file code
  3. Oracle Re: I want to convert that database to SQLSERVER database

    Hi

    I din't understood the question. I came to know that you want to move the databse from oracleDB to SQL Server DB.
    try following steps I hope it make works

    1) first of all open MS-Access...
  4. Answers
    6
    Views
    5,050

    Oracle Re: sql query tuning

    try outer join if necessory in the query
  5. Answers
    9
    Views
    9,152

    Oracle Re: insert picture to table

    you need to create a column data type as BLOB and when ever you store image in to BLOB type column it will store in the form of Binary.
  6. Answers
    6
    Views
    4,214

    Oracle Re: Unlock Problem

    try this one

    Are you able to login to system account
    if yes
    try following query

    after login to system account

    alter user sys account unlock;
  7. Answers
    3
    Views
    3,576

    Oracle Re: Record Size

    Try this one

    seletc lengthb(deptno)+lengthb(dname)+lengthb(loc) bsize from dept where loc='xxx';
  8. Answers
    3
    Views
    3,643

    Oracle Re: Data Gathering

    Hi susarlasireesha,

    Thanks for your solution.
  9. Answers
    8
    Views
    8,128

    Oracle Re: Constraints Vs Triggers

    Hi

    Constraints Vs Triggers have its own advantages and dis-advantages.
    My opinion is to follow constraints. in rare case better to follow triggers.
    According to requirement first of all go...
  10. Oracle Re: Creating a table by copying another table's structure

    Try following query

    create table destination_table_name as (select * from source_table_name);

    eg:

    create table new_emp as (select * from emp);
  11. Oracle Re: Package oracle.jdbc.driver does not exist

    PLease set the classpath at environment variable.

    right click on "Mycomputer">properties>advance>environment variable
    try it
  12. Answers
    20
    Views
    44,853

    Oracle Re: Dual Table in Oracle

    Dual table is an hidden table in oracle.
    dual table having single attribute.
    we can store calculated value temporerly in the dual table.

    For Example:

    select sysdate from dual;

    it store...
Results 1 to 12 of 28
Page 1 of 2 1 2
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