タグ

sqlとOracleに関するigrepのブックマーク (3)

  • 単一SQLクエリでハノイの塔を解いてみよう - Qiita


     SQLOracleSQL使SQLPostgreSQLMySQL   Hanoi (n, orig, free, dest) { if (n >1) Hanoi (n - 1, orig, dest, free); printf("%s -> %s\n", orig, dest); if (n >1) Hanoi (n - 1, free, orig, dest); } 
    単一SQLクエリでハノイの塔を解いてみよう - Qiita
  • Install Oracle SQL Developer on Ubuntu Karmic & Lucid | UnMickAble

    If you want to install Oracle’s SQL Developer on Ubuntu (or another DEB based system such as Debian) you can do one of the following: Download the RPM package and install using rpm (not advisable). Download the RPM package and convert to a DEB package using alien Download the ZIP file titled “Oracle SQL Developer for other platforms” and manually install Use the make-sqldeveloper-package to conver

    igrep
    igrep 2011/09/02
    OracleのGUI SQL Developerのインストール
  • サンプル・スキーマのスクリプトおよびオブジェクトの説明

    4 サンプル・スキーマのスクリプトおよびオブジェクトの説明 この章では、Oracle Databaseサンプル・スキーマの生成に使用するスクリプトについて説明します。この章は次の項で構成されています。 スクリプトについて マスター・スクリプト HRスキーマ OEスキーマ PMスキーマ IXスキーマ SHスキーマ スクリプトについて サンプル・スキーマ・スクリプトのディレクトリは、$ORACLE_HOME/demo/schemaです。 付属のCDをインストールして、サンプル・スキーマ・スクリプトが含まれるディレクトリを移入する必要があります。各スキーマには、次の2つの主要スクリプトがあります。 xx_main.sqlスクリプト(xxはスキーマの略称)は、あるスキーマのすべてのオブジェクトとデータを再設定して作成します。この主となるスクリプトは、他のすべてのスクリプトを実行して、スキーマを作成

  • 1