DataBase

エラーメッセージ:
Another MySQL daemon already running with the same unix socket.
原因:
複数のMySQLプロセスが同じソケットを使用する理由 ...

DataBase

エラーメッセージ:
C:\Documents and Settings\Administrator>emctl start dbconsole
Environment variable ORACLE_SID no ...

DataBase

1.エラーメッセージ:
$ sqlplus
SQL*Plus: Release 11.2.0.1.0 Production on Sat Jan 25 09:31:04 2014
Copyright (c) 1 ...

DataBase

1.エラーメッセージ:
$ emctl stop dbconsole
Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
Copy ...

DataBase

エラーメッセージ:
ORA-00845: MEMORY_TARGET not supported on this system

解決方法:
# df -h
Filesystem Size Used ...

DataBase

1.アーカイブログのオープンに失敗した
SQL> alter database archivelog;
alter database archivelog
*
ERROR at line 1: ...

DataBase

Oracleテーブルスペース、ユーザおよびオーソライズ、権限の確認
1.一時表スペースを作成
CREATE TEMPORARY TABLESPACE test_temp
TEMPFILE ‘C:\o ...

DataBase

//TEMPORARY表スペースを作成

create temporary tablespace ${temptablespacename}
tempfile ‘D:\oracle\product\10. ...

DataBase

ダウンロード
提供元サイトからダウンロード

更新内容:

CSVのインポート改善

Boolean型でNULLとFalseを区別

 

DataBase

UbuntuにMySQLリモート管理を設定
1.アクセス権限の設定
$ sudo mysql -u root -p
Enter password: startnews24
mysql> GRANT ...

DataBase

1.インストール済みパッケージ
.net framework4.0

2.エラーメッセージ:
unable to find a version of the runtime to run this appli ...

DataBase

1.インストール手順下記:

$ rpm –install couchbase-server-enterprise_x86_64_2.0.0.rpm
error: can’t create t ...

DataBase

1.現在のユーザのデフォルトのテーブルスペースを表示する
select username,default_tablespace from user_users;
–XUSER XUSER_DATA ...

DataBase

1.mysqlで時間カラムをdaterimeへ変更
alter table tablename add pay_date datetime comment ‘秒まで精確時間’

2.SQL文で ...

DataBase

1.処理コード:

USE master
GO

IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'.’) A ...

DataBase

処理方法:

SELECT A.COLUMN_NAME フィールド名,
DATA_TYPE ||DECODE(DATA_TYPE,’DATE’,”,’CLOB̵ ...

DataBase

機能:

全テーブルをクリア(Oracle 10g環境で確認済み)
コード下記:
declare
— 全のテーブルのカーソルを指す
cursor c_t is
select ...

DataBase

処理コード:

SELECT/*+ rule */
s.username,
DECODE (l.TYPE,
‘TM’, ‘TABLE LOCK’, ...