![]() |
|
Submit Oracle Questions |
|
Interrelated Information Technology |
|
| Database Questions | WebLogic Questions |
| WebSphere MQ Questions | Web Server Questions |
| Java Questions | XML Questions |
The Computer Education Techniques knowledge base is a service for answering questions, inclusive of the research and validation of the accuracy of information in the public domain. Citation of source documentation and examples are used to provide answers to the questions. Utilization of the information of this service and reliance on the answers, information or other materials received through this web site is done at your own risk.
| Q |
How many categories of data types does Oracle have? |
||||
| A |
Oracle supports the following categories of data types:
|
| Q |
Our organization utilizes the Oracle database and business operations require careful monitoring of the current redo log file? Do you have any recommendations as how to we can efficiently perform these tasks? We also need to carefully monitor database uptime. |
| A1 |
A query can be used to provide this information. It will indicate how capacity of the current redo log file and will project when the next log file will be archived out. Code: SELECT le.leseq "Current log sequence No", 100*cp.cpodr_bno/le.lesiz "Percent Full", cp.cpodr_bno "Current Block No", le.lesiz "Size of Log in Blocks" FROM x$kcccp cp, x$kccle le WHERE le.leseq =cp.cpodr_seq AND bitand(le.leflg,24) = 8 / |
| A2
|
This code will help in addressing the uptime database issue. SELECT to_char(startup_time,'DD-MON-YYYY HH24:MI:SS') "DB Startup Time" FROM sys.v_$instance; |
| Q |
What are the differences between CHAR and NCHAR? |
| A |
Both CHAR and NCHAR are fixed length character data types. They have the following differences:
Guideline: With Oracle dates can be converted to characters using the TO_CHAR() function: Example: SELECT TO_CHAR(SYSDATE, 'DD-MON-YYYY') FROM DUAL; -- SYSDATE returns the current date 17-MAY-2008 |
| Q | Do your Oracle courses teach migration and interoperability with other databases? |
| A | Our Oracle courses reflect the full range of issues regarding migration and interoperability with other databases: Oracle8 to Oracle9i, DB2 to Oracle, etc. SYS-ED’s Oracle training programs can be mixed and matched based upon the existing investment in code and specific operational objectives. And yes, we provide both an examination of the Oracle development tools with the Java standard. |
| Q |
Will your courses help us to address specific issues relating to multi-vendor / multi-platform issues? |
| A | Our Oracle courses teach the database foundation not only for Oracle AS, but all the ODBC options – DB2 UDB, SQL Server, and Sybase. |
| Q | Do we have to take all the courses in a curriculum? |
| A | No. We invite you to review the sample programs, course workbooks, and workshops and cross reference them to your project specifications and operational objectives. Our systems consultants will provide consulting expertise and commit in writing the skillset that your staff will acquire in our courses. You only take the courses specific to a project specification. Optionally, we can provide pre and post course validation procedures. |
| Q | We are not a Fortune 1000 company; and it is important that we leverage our existing investment in web server and Internet technologies. |
| A | Since we are vendor-independent; we can provide unbiased information and hands-on demonstrations as part of your assessing whether or not you should take a course. And we offer the just-in-time training you require to make your operational requirements a reality within a realistic budget. |
| Q | What if I have specific performance optimization and troubleshooting questions which need to be addressed? |
| A | Our Oracle PL/SQL programming courses and training programs reflect not only the how-to’s but the why’s required for effective performance optimization. We have the benchmarks, tools, and utilities to resolve your bottlenecks. |