How can you tune SQL statements?
Answers were Sorted based on User's Feedback
SQL Statements can be tuned depending on the Database,
different DBMS provides different types of the execution
plan, Oracle provides "Explain Plain" which explains the
cost of the query. Using which we can estimate the cost and
make the necessary changes like creating indexes........
Is This Answer Correct ? | 0 Yes | 0 No |
Can the JDBC-ODBC Bridge be used with applets?
Which interface handles transaction management in jdbc?
How does jdbc connect to database?
What is the latest version of JDBC? What new features are added?
What types of DataSource objects are specified in the Optional Package?
How can I get information about foreign keys used in a table?
What does jdbc stand for?
Can you define a foreign key, with a key from the same table?
What is a jdbc driver and how many jdbc drivers are available?
What type of drivers have you used?
Which database is used with java?
MY code is: public class P1{ public static void main(String ar[]) { class.forName("java.lang.String"); } } errors i got are :New.java:5: error: <identifier> expected class.forName("java.lang.String"); ^ New.java:5: error: invalid method declaration; return type required class.forName("java.lang.String"); ^ New.java:5: error: illegal start of type class.forName("java.lang.String"); ^ New.java:7: error: reached end of file while parsing } ^ 4 errors HELP ME>......