Question

I want to convert this query that I wrote for oracle JDBC 19 to oracle JDBC...

I want to convert this query that I wrote for oracle JDBC 19 to oracle JDBC 11.

" Select cust.cust_id, cust.cust_name, status.status, status.last_updated, status.message from user_status status join customer cust on status.cust_id = cust.cust_id offset 0 fetch next 10 row only; "

I dont know how fetch works in ojdbc 11

0 0
Add a comment Improve this question Transcribed image text
Answer #1

By default oracle only fetches 10 result at a time. Therefore you dont have to include the fetch part.

In case you want to set some certain value for the results fetched

Right click on the SQL Connection -> Edit Database Connection -> then go to tab Properties -> select Driver Properties -> click on the "+" icon -> add the java.sql.statement.setFetchSize property -> type the value

Add a comment
Know the answer?
Add Answer to:
I want to convert this query that I wrote for oracle JDBC 19 to oracle JDBC...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • A query that is based on more than two tables and includes both an arithmetic and...

    A query that is based on more than two tables and includes both an arithmetic and a special operator in the conditional expression. Both the arithmetic and the special operator must be different from the ones used in part a PART A. Select Car_Cust.Cust_Num, Car_Model from Car_Cust inner join Car on Car_Cust.Car_VIN = Car.Car_VIN inner join Car_Type on Car.Car_Code = Car_Type.Car_Code where Car_Code = 'C123' and Car_Model IN('M1','M2','M3',M7'); I keep getting an error message ... PART B . Need help...

  • Trying to run an sql query in VBA but every time I run the macro I...

    Trying to run an sql query in VBA but every time I run the macro I get an error message stating " Run-time error’- 2147217900 (80040e14)’: ORA-00923: From keyboard not found where expected”. I am a newbie with using queries and am wondering if anyone knows what the problem is with the query I wrote and why I keep getting this error in VBA. Everything in my code works except this query so I know the problem has to be...

  • MYSQL Applied Database I just want to make sure that the syntax looks okay for my...

    MYSQL Applied Database I just want to make sure that the syntax looks okay for my database SQL statements, any help would be much appreciated: 1.A query that asks for customer star review for Tony Stark on Opportunity Detail. SELECT CONCAT (employee_first_name,' ',employee_last_name) AS                            employee_name, review_star_count, FROM customer_reviews, JOIN e employees ON employee_id =employee_id, WHERE employee_id=4 AND opportunity_id=1; 2.A query that shows how many orders Additional Dot Twain License, in an order totaling over $900. SELECT product_name, COUNT(o.OrderID) AS...

  • I want to know how to solve this problem step by step. 31.7.7 Determine if the...

    I want to know how to solve this problem step by step. 31.7.7 Determine if the columns of the matrix form a linearly independent set 13 -3 4 273 -1 28 3-19 Select the correct choice below and fill in the answer box to complete your choice 100 50 The columns are not linearly independent because the reduced row echelon form of T A o is 0 10 0 0 0 0 1 3 0 o B. The columns are...

  • I want write a MySQL query to get the number of customers who have made at...

    I want write a MySQL query to get the number of customers who have made at least one purchase in each group (gender, education), I know how to do with two seperate query. but is that possible to get one query with the column like: gender | counts | education | counts The first 5 rows of each table looks like this: customers customer_id | first_name | last_name | state | birthdate | education | gender | date_account_opened 50 |...

  • How can I convert $num_rows to PDO? See errors below code ** (PHP, MySQL, HTML) $sql...

    How can I convert $num_rows to PDO? See errors below code ** (PHP, MySQL, HTML) $sql = "SELECT testN, testG from testTab";    $res = $db -> query($sql);    ** if ($res-> $num_rows >0)    {        while($row = $result-> fetch_assoc())        {            echo "". $row["testN"] ."". $row["testG"]. "";            if($row['testG'] < 60)            {            echo "". "F" ."";            }            elseif($row['testG'] >= 60 and $row['testG']<=69)            {                echo "". "D" ."";            }        }        echo "";     } else    {        echo("0 Result");           } ** Notice: Undefined variable: result...

  • How do I use to_date in Oracle to do this? I tried inputting the date and time but only the date shows up.How do I also...

    How do I use to_date in Oracle to do this? I tried inputting the date and time but only the date shows up.How do I also at 7 days to this date and change the time to 2 pm? (SELECT TO_DATE('2019/05/19 04:00 PM', 'yyyy/mm/dd hh:mi AM') FROM dual), GARAGE_CODE VUNIT_ID RESERVE_DA RENTER_NO ----------- ---------- ---------- ---------- 12 451 19/05/2019 10

  • I am using oracle sql developer to create some queries to generated reports and it is...

    I am using oracle sql developer to create some queries to generated reports and it is not working. I am not sure how to use count, group by, and order by. Help me fix my query and explain to me how you did, so can do it next time. Also, I have to convert this query to a stored procedure, so can you help me do it too? Here is my query: SELECT COUNT(GUEST.FIRSTNAME), GUEST.FIRSTNAME, GUEST.LASTNAME, GUEST.GUESTTYPE, RESERVATION.RESERVATIONDATE, GUEST.EMAIL, FROM...

  • Please provide the relation algebra, the oracle SQL code and the output tuples for the following (Answer #6 only the BONUS question). I have the others actually I have the BONUS, but I want to compar...

    Please provide the relation algebra, the oracle SQL code and the output tuples for the following (Answer #6 only the BONUS question). I have the others actually I have the BONUS, but I want to compare with your solution to make sure I did it correctly. Thank you very much! LAB exercises 2 Write the Oracle DML query codes for the following questions and take the screen shot of the output. 1. Retrieve the name and address of all employees...

  • I am using python and I want to know how I can get the spacing between...

    I am using python and I want to know how I can get the spacing between the low mid and high to be dependent on the range and how I can get that boarder to be dependent on the range as well. Im not sure what you mean, I just want to know about the spacing. Modify your project1.py Python program so that it displays the low, mid and high point values for periodic function and a double-line border. (HINT:...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT