Oracle questions, 10 questions every day (7)

61. How to view which of the following statements are available in Oracle?ProgramRunning? View the V $ sessions table 62. How can I see the number of tablespaces in the database? Select * From dba_tablespaces; 63. How do I modify the number

Oracle questions, 10 questions every day (9)

81. Inner join? Select a. * From bsempms A, bsdptms B where a. dpt_no = B. dpt_no; 82. How do I connect externally? Select a. * From bsempms A, bsdptms B where a. dpt_no = B. dpt_no (+ ); Select a. * From bsempms A, bsdptms B wherea. dpt_no (

Oracle questions, 10 questions every day (11)

101. How to search for the first N records? Select * from employee where rownum Order by empno; 102. How many concurrent users are supported by Oracle on the machine? SQL> conn internal;SQL> show parameter processes; 103. Can db_block_size be

Solution to forgetting the Oracle internal account password

I encountered a problem today: I forgot the password of the internal account: (I checked the information and found a way to enter the database: In the Oracle database system, if you want to log on to the Oracle database as a privileged user

How to Set auto-start for Oracle in Linux

Method 1) Add the following script to/etc/rc. d/rc. Local or/etc/rc. d/RC # Setting Environment VariablesExport oracle_base =/opt/OracleExport ORACLE_HOME =/opt/Oracle/product/9204Export Path = $ ORACLE_HOME/bin: $ ORACLE_HOME/Apache/bin: $

Oracle questions, 10 questions every day (5)

41. How do I add comments to tables and columns? SQL> comment on table is 'table annotation'; the comment has been created. SQL> comment on column table. The column is 'column annotation'; the comment has been created. SQL> select * From

Oracle questions, 10 questions every day (8)

71. Kernel Parameter application? Shmmax  Meaning: This setting does not determine the actual amount of physical memory used by the Oracle database or operating system. It only determines the maximum amount of memory that can be used. This setting

Oracle questions: 10 questions every day (10)

91. How to estimate the number of I/O executed by SQL? SQL> set autotrace on; SQL> select * from table; Or SQL> select * from V $ filestat; I/O count can be viewed 92. How can I change the field size in sqlplus? Alter table table_name modify

Oracle questions, 10 questions every day (13)

121>. Write the date at the time point: Select to_char (sysdate, 'dd') from dual; 122>. Write the time point: Select to_char (sysdate, 'hh24') from dual; 123>. Write the time points: Select to_char (sysdate, 'mi') from dual; 124>. The second

Large Object Access for MySQL, sqlserver, and Oracle databases

MySQL large object access: The mediumblod type is generally used, Blob can only store 16 bytes to the power of 2, Mediumblod is the power of 24, Generally enough. longblob is a bit large to the power of 32. By default, MySQL can only store files of

Oracle mounts a class to a database

Note: When you load a class into the database, you cannot execute the class in the sqlplus command line. The class name should not start with the package name. Otherwise, the class cannot be found or the package name should be specified during the

Oracle execution plan-all_rows and first_rows (n) optimizer Modes

0. Create an environment SQL> create usertest identified by test 2 default tablespace users 3 temporary tablespace temp 4 quota unlimited on users;User created.SQL> grant createsession, resource, alter session to test;Grant succeeded.SQL>

Oracle interview questions-Technical Article (2)

Oracle interview questions-Technical Article (2) 21. How to determine the time zone of the database?Answer: Select dbtimezone from dual; 22. Explains the purpose of setting global_names to true.A: global_names indicates how to connect to the

Oracle lob field learning

Release date: Source: collected: -- Insert bfile create or replace procedure insert_book (filename varchar2)Book_file bfile: = NULL;Bookexists Boolean: = false;BeginBook_file: = bfilename ('book _ text', filename );Bookexists: = dbms_

Use ADO. Net to access the Oracle 9i Stored Procedure (on)

This article discusses how to use ADO. Net to access Oracle stored procedures (called SQL programming blocks) and functions (return a single value of the programming block ). You can use the following managed data providers to connect to the Oracle

Crystal Report calls Oracle stored procedures

Source: Network/Editor: getting started with programming: Unknown The crystal report version is 8.5 The stored procedure is: create or replace package pkg_test4astype v_cursor is ref cursor;end pkg_test4;/create or replace procedure

Oracle development-calling Oracle stored procedure using ASP

Source: Network/Editor: getting started with programming: Unknown        '-----------------------------------Dim sp_commonSet sp_common = server. Createobject ("ADODB. Command ")With sp_common. Activeconnection = Conn. Commandtext = "

How to use JSP to process clob fields in Oracle

1. Clob Insert Field Direct insert of clob data may cause errors due to long characters. Therefore, you must insert data as an object. Example: First, create a table containing the clob field: Create Table Test (ID integer, content clob );  

How to read files in the Blob field of Oracle

Download source code: Http://download.csdn.net/source/589896     Use oradbi to read multiple files stored in the Blob field and restore them to the specified path. The complete code is as follows:   // // Read_blobfile.c-Example of reading

Summary of Oracle usage over the past few days

How to Create a tablespace? Create tablespace test logging datafile 'd: \ oracle \ oradata \ orcl \ test. ora 'size 50 m autoextend on next 50 m maxsize unlimited extent management local; How to create a user? Create User Username profile default

Total Pages: 2147 1 .... 1394 1395 1396 1397 1398 .... 2147 Go to: GO

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.