..
SVN INFO:
svn+mmm://park.monster.tw/SVN/SAMPLE_CODE/Scala
Zeppelin docker image: dylanmei/zeppelin
..
SVN INFO:
svn+mmm://park.monster.tw/SVN/SAMPLE_CODE/Scala
Zeppelin docker image: dylanmei/zeppelin
change
example.com/index.php/news/article/my_article
into this :
example.com/news/article/
netca , dbca
Connect as SYSTEM.
CREATE USER username IDENTIFIED BY apassword;
GRANT CONNECT TO username;
GRANT SELECT [, INSERT] [, UPDATE] [, DELETE] on schema.table TO username;
use exp
For example, in the following example, benefits table has a column called v_status. This exp command will export only the rows that contains “INVALID” as value in the v_status column.
$ exp hradmin/mypassword TABLES=benefits query=\"where v_status=\'INVALID\'\" .. About to export specified tables via Conventional Path ... . . exporting table BENEFITS 20783 rows exported
SQL*Loader (sqlldr) is the utility to use for high performance data loads. The data can be loaded from any text file and inserted into the database.