等比数列
This file contains hidden or 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
|题型|模块|题量|分值/题|总分| | |
|---|---|---|---|---| | |
|言语理解与表达||40|0.8|32| | |
|数量关系|数学运算|15|0.7|10.5| | |
|判断推理|图形推理|10|0.75|7.5| | |
||定义判断|10|0.7|7| | |
||类比推理|10|0.8|8| | |
||逻辑判断|10|0.7|7| | |
|常识||20|0.7|14| | |
|资料分析||20|0.7|14| |
This file contains hidden or 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
# chkconfig: 2345 10 90 | |
# description: Start and Stop redis | |
PATH=/usr/local/bin:/sbin:/usr/bin:/bin | |
REDISPORT=6379 | |
EXEC=/usr/local/redis/bin/redis-server | |
REDIS_CLI=/usr/local/redis/bin/redis-cli | |
PIDFILE=/var/run/redis.pid |
This file contains hidden or 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
CREATE OR REPLACE FUNCTION verify_function_new | |
(username varchar2, | |
password varchar2, | |
old_password varchar2) | |
RETURN boolean IS | |
n boolean; | |
m integer; | |
differ integer; | |
isdigit boolean; | |
ischar boolean; |
This file contains hidden or 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 python | |
import json | |
import logging | |
import os | |
import signal | |
import socket | |
import subprocess | |
import sys | |
import time |
This file contains hidden or 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
BEGIN | |
DBMS_SCHEDULER.DISABLE( | |
name=>'"SYS"."MONDAY_WINDOW"', | |
force=>TRUE); | |
END; | |
/ | |
BEGIN | |
DBMS_SCHEDULER.SET_ATTRIBUTE( | |
name=>'"SYS"."MONDAY_WINDOW"', |
This file contains hidden or 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
spool create_DB3.log | |
set echo on | |
REM ********** TABLESPACE FOR USER DATA **************** | |
CREATE TABLESPACE DATATB | |
DATAFILE '/oradata/&dbname/data1.dbf' SIZE 30000M REUSE | |
EXTENT MANAGEMENT LOCAL | |
AUTOALLOCATE; | |
alter tablespace datatb add datafile '/oradata/&dbname/data2.dbf' size 10000M REUSE; |
This file contains hidden or 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
spool create_DB2.log | |
connect / as sysdba | |
@$ORACLE_HOME/rdbms/admin/catalog.sql | |
@$ORACLE_HOME/rdbms/admin/catblock.sql | |
@$ORACLE_HOME/rdbms/admin/catproc.sql | |
@$ORACLE_HOME/rdbms/admin/catoctk.sql | |
@$ORACLE_HOME/rdbms/admin/owminst.plb | |
connect system/oracle |
This file contains hidden or 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
connect sys/oracle as sysdba; | |
set echo on | |
spool create_DB1.log | |
startup nomount pfile="/oracle/admin/&dbname/scripts/init&dbname..ora"; | |
CREATE DATABASE "&dbname" | |
MAXINSTANCES 8 | |
MAXLOGHISTORY 500 | |
MAXLOGFILES 16 | |
MAXLOGMEMBERS 3 | |
MAXDATAFILES 500 |
This file contains hidden or 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/bash | |
echo "Please Input the SID" | |
read dbname | |
export ORACLE_SID=$dbname | |
echo "Please Input the Number of Datafiles(30G each)" | |
read datatb | |
echo "Please Input the Number of Indexfiles(30G each)" | |
read idxtb | |
##############Create DBFile Directory############## | |
cd /oradata #####新建系统时需要存在该目录 |
NewerOlder