Oracle

対策:

Oracle管理者に切り替え、次のコマンドを実行

$ORACLE_HOME/bin/lsnrctl

LSNRCTL> change_password
Old password: ...

Oracle

1.ユーザー環境を設定
vi/home/oracle/.bash_profile #次の内容を追加設定

export ORACLE_BASE=/data/oracle #oracleデータベースのインストールディレ ...

Linux

1.cobblerをインストール、設定
1.1 epelソースパッケージを導入
# rpm -ivh epel-release-6-8.noarch.rpm
# yum update
# yum upg ...

Oracle

1.Oracle sqlplusのログインでバージョン確認(Oracleサーバー)
sqlplusでOracleへ接続時にサーバーのバージョンが表示されます

>sqlplus/nologSQL*Plus: Rele ...

MySQL

例1 MySQLコード:

update article set content = replace (content,’大井町’,’大森’) where id <100 ...

Windows10

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

更新内容:

新たにPNGの非可逆圧縮に対応させました。
エンジン ...

VB.net

書式
Regex.IsMatch(指定文字列, “^*$”)
正規表現と一致する箇所が見つかった場合は true。それ以外の場合は false です。

使用例

Imports ...

Swift

方法1
var cftA: Int = 567
var nsA : NSInteger = NSInteger(exactly: Double(cftA))!

方法2
var cftB Int = ...

Software

ダウンロード:
提供元サイトからダウンロード
cnetサイトからダウンロード
softpediaサイトからダウンロード
更新内容:
QAAC 2.41 (with CoreAudioToolBo ...

Windows10

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

更新内容:
Bugs fixed:
abi#3623 RTF ...

Java

書式
public Date parse(String source)throws ParseException
指定された文字列の先頭からテキストを解析して日付を生成します。
使用例

package c ...

PHP

書式
$_POST
使用例

1.phpコード$usr = $_POST;function funcA($target){ return htmlspecialchars($target, ENT_QUOTES, ...

batch

書式
for/l %%変数名 in (開始値,増減分,終了値) do (
処理コード
)
使用例

@echo offfor/l %%m in (5,3,15) do ( echo ループの増分:% ...

Windows10

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

更新内容:

Version 5.9.1 has been released in Installer and P ...

Development

ファイル名:
directorytree.py
pythonコード:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
im ...

C++

1、CStringから string
CString strCstrSource(”テスト”);
string strTarget;
strTarget = strCstrSource. ...

Development

pythonコード:
f = open(‘c:\\names_startnews24.txt’);
lang =0;
result =””;
for li ...

Android

Javaコード
修正前
public View getView(int position, View convertView, ViewGroup parent) {
View view = new Xxx(& ...