DECLARE
CURSOR c1
IS
SELECT 'alter user '
|| username
|| ' LOCAL TEMPORARY TABLESPACE '
|| TEMPORARY_TABLESPACE
FROM dba_users
WHERE username NOT IN ('XS$NULL')
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Reset to default | |
set all& | |
set nocompatible | |
if exists('g:loaded_vimrc') | |
finish | |
else | |
let g:loaded_vimrc = 'yes' | |
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; For azerty layout | |
<^>!o::Send "{U+0153}" | |
<^>!+o::Send "{U+0152}" | |
>+à::Send "{U+00C0}" | |
>+é::Send "{U+00C9}" | |
>+è::Send "{U+00C8}" | |
>+ç::Send "{U+00C7}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
if [[ -z "${1}" ]] | |
then | |
echo "Usage :" | |
echo " ${0}" chroot_dir | |
exit 1 | |
fi | |
mkdir "${1}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
export CC=cc | |
export REALCC=${CC} | |
export CPPFLAGS="-P" | |
# ANSI Color Codes | |
RED="\033[0;31m" | |
GREEN="\033[0;32m" | |
#YELLOW="\033[0;33m" | |
BLUE="\033[0;34m" | |
COLOR_END="\033[0m" |
SET LONG 500000;
SET PAGES 10000;
SET LINES 180;
SELECT systimestamp,s.sql_fulltext,
s.sql_id,
v.machine,
v.sid,
v.serial#,
v.process,
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(setq package-enable-at-startup nil) |
NewerOlder