Oracle Scripts
open-menu closeme
Home
All Oracle Scripts
Scripts & Commands
Links icon
Oracle Database Documentation Oracle Enterprise Manager
About
Contact Us
Privacy Satement
🌐
English Português
rss
  • Creating a Temporary Tablespace in Oracle Database

    calendar Feb 15, 2024 / Aug 25, 2025 · 2 min read · Database Administration Oracle Tablespace Temp  ·
    Share on: twitter facebook linkedin copy

    Creating a Temporary Tablespace in Oracle Database This guide explains an Oracle Database SQL code snippet for creating a temporary tablespace named temp, its purpose, key points, and insights. Sample SQL Command 1create temporary tablespace temp 2tempfile '<file_name>' size 500M 3/ Create a Temporary Tablespace named …


    Read More
  • Understanding User Quotas in Oracle Database

    calendar Feb 14, 2024 / Aug 25, 2025 · 2 min read · Database Administration Users Quotas dba_ts_quotas  ·
    Share on: twitter facebook linkedin copy

    How to Query User Quotas in Oracle Database The code below retrieves and displays information about user quotas on all tablespaces excluding the temporary tablespace (TEMP) on a Oracle database. Sample SQL Command 1col quota format a10 2select username 3tablespace_name 4decode(max_bytes, -1, 'unlimited', ceil(max_bytes …


    Read More
  • Understanding Tablespace Usage in Oracle Database

    calendar Feb 13, 2024 / Aug 25, 2025 · 4 min read · database administration monitoring optimization tablespace usage oracle dba_data_files dba_temp_files  ·
    Share on: twitter facebook linkedin copy

    Description of Oracle Database SQL code for Tablespace Usage This code provides a comprehensive overview of tablespace usage in your Oracle database. Here's a breakdown of its purpose, components, and key points: Sample SQL Command 1set pages 999 2col tablespace_name format a40 3col "size MB" format 999,999,999 4col …


    Read More
  • Exploring Datafiles within Oracle Tablespaces

    calendar Feb 12, 2024 / Aug 25, 2025 · 2 min read · database-administration performance-monitoring data-management tablespace datafiles dba_data_files optimization usage oracle dba_temp_files  ·
    Share on: twitter facebook linkedin copy

    Description of Oracle Database SQL code for Showing Tablespace Files This code displays information about the datafiles composing a specific tablespace in your Oracle database. Here's a breakdown of its purpose, components, and key points: Show thea data files that comprise a tablespace Sample SQL Command 1col …


    Read More
  • Understanding crsctl query css votedisk Command in Oracle Clusterware

    calendar Feb 11, 2024 / Aug 25, 2025 · 2 min read · Oracle Database Cluster Administration Oracle Clusterware Managing  ·
    Share on: twitter facebook linkedin copy

    Understanding crsctl query css votedisk Command in Oracle Clusterware This page explains the crsctl query css votedisk command, its purpose, breakdown, and key points, offering insights and explanations for Oracle Clusterware management. Sample Oracle Command 1crsctl query css votedisk Description of Oracle Database …


    Read More
  • Maintaining Cluster Health with ocrcheck in Oracle Clusterware

    calendar Feb 10, 2024 / Aug 25, 2025 · 2 min read · oracle database cluster administration Oracle CRS Oracle Clusterware Managing oracheck  ·
    Share on: twitter facebook linkedin copy

    Overview Of ocrcheck Command The ocrcheck command is a valuable tool for managing the Oracle Cluster Registry (OCR) within Oracle Clusterware Retrive OCR (Oracle Cluster Registry) information Sample SQL Command 1ocrcheck Purpose: ocrcheck is a command-line utility used to verify the health and consistency of the Oracle …


    Read More
  • Halt Automated Startups Managing Databases with srvctl disable database

    calendar Feb 9, 2024 / Aug 25, 2025 · 2 min read · oracle database cluster administration  ·
    Share on: twitter facebook linkedin copy

    Preventing a Database Startup at Boot Time: srvctl disable database This command, commonly used in Oracle environments, instructs Oracle Clusterware to prevent a specific database from automatically starting when the operating system boots. Understanding its purpose, breakdown, and key points can help you manage your …


    Read More
  • Clarifying oifcfg getif Identifying Your Oracle Cluster Interconnect Subnet

    calendar Feb 8, 2024 / Aug 25, 2025 · 2 min read · oracle database cluster administration Oracle CRS Oracle Clusterware managing oifcfg  ·
    Share on: twitter facebook linkedin copy

    Understanding oifcfg getif for Oracle Cluster Interconnect Subnet Change The Oracle Clustware command oifcfg getif is a crucial utility for managing Oracle Clusterware and its private interconnect subnet. Below is breakdown of its purpose, usage, and key points: Change the private interconnect subnet. First find the …


    Read More
  • Modifying Your Oracle Cluster Interconnect Subnet with Caution Exploring oifcfg Commands

    calendar Feb 7, 2024 / Aug 25, 2025 · 2 min read · oracle database cluster administration  ·
    Share on: twitter facebook linkedin copy

    Understanding oifcfg for Changing Oracle Cluster Interconnect Subnet The oifcfg Oracle Clusterware commands presented involve modifying the Oracle Clusterware private interconnect subnet.What follows is a breakdown of their purpose, usage, and key points: Make a note of the interface name (eth1 in the following …


    Read More
  • Identifying Tablespaces Needing More Space in Oracle Database

    calendar Feb 6, 2024 / Aug 25, 2025 · 3 min read · database administration resource optimization performance monitoring data management tablespace datafiles dba_data_files dba_tablespaces  ·
    Share on: twitter facebook linkedin copy

    Description of Oracle Database SQL code for Identifying Tablespaces Needing Space This code helps identify tablespaces requiring additional space to maintain an 80% utilization threshold in your Oracle database. Below is a breakdown of its purpose, components, and key points: Sample SQL Command 1set pages 999 lines 100 …


    Read More
    • ««
    • «
    • 6
    • 7
    • 8
    • 9
    • 10
    • »
    • »»

OracleScripts.com

Your Source for Oracle SQL Scripts
Read More

Recent Posts

  • Oracle SQL Performance Analysis Query - Monitor SQL Execution Statistics
  • Oracle SQL Hash Lookup Query - Retrieving SQL Text from V$SQLAREA
  • Oracle Database: Find Query Hash Value Using V$SQLAREA
  • Oracle Database EXPLAIN PLAN: Complete Guide to SQL Performance Analysis
  • Oracle Database Autotrace Commands: Complete Guide to SQL Execution Plan Analysis
  • Oracle Database Query to Find Tables with Outdated Statistics - Monitor Analyze Progress
  • Show a Count of Analyzed Tables by Schema in Oracle Database
  • Oracle PLAN_TABLE Setup and EXPLAIN PLAN Usage Guide

Categories

SCRIPTS 126 ORACLE ADMINISTRATION RAC 12 ORACLE STRUCTURE TABLESPACE 11 ORACLE STRUCTURE FILES 10 ORACLE STRUCTURE OBJECTS 10 ORACLE ADMINISTRATION SESSION 9 ORACLE ADMINISTRATION ASM 8 ORACLE PERFORMANCE GENERAL 8 ORACLE PERFORMANCE STATISTICS 8 ORACLE PERFORMANCE WAITS 8 ORACLE ADMINISTRATION STATUS 7 ORACLE STRUCTURE CONSTRAINTS 7 ORACLE PERFORMANCE QUERY TUNING 6 ORACLE ADMINISTRATION USER 5
All Categories
ORACLE ADMINISTRATION ASM8 ORACLE ADMINISTRATION INIT PARAMETERS3 ORACLE ADMINISTRATION RAC12 ORACLE ADMINISTRATION SESSION9 ORACLE ADMINISTRATION STATUS7 ORACLE ADMINISTRATION USER5 ORACLE PERFORMANCE GENERAL8 ORACLE PERFORMANCE LOCKS DML4 ORACLE PERFORMANCE QUERY TUNING6 ORACLE PERFORMANCE STATISTICS8 ORACLE PERFORMANCE WAITS8 ORACLE STRUCTURE CONSTRAINTS7 ORACLE STRUCTURE FILES10 ORACLE STRUCTURE INDEXES2 ORACLE STRUCTURE OBJECTS10 ORACLE STRUCTURE REDO LOGS3 ORACLE STRUCTURE TABLESPACE11 ORACLE STRUCTURE UNDO4 SCRIPTS126
[A~Z][0~9]

Series

ADMIN GUIDE 126

Tags

ORACLE 103 DATABASE 53 SQL 40 ADMINISTRATION 30 PERFORMANCE 25 DATABASE ADMINISTRATION 20 OPTIMIZATION 17 DBA 15 V$SESSION 12 ORACLE CLUSTERWARE 11 TROUBLESHOOTING 11 MANAGING 10 PERFORMANCE TUNING 10 TABLESPACE 10
All Tags
$DATAFILE1 ACCOUNT1 ADMINISTRATION30 ALL_OBJECTS1 ALTER SESSION1 ANALYZE1 ASM2 ASM DISK UTILIZATION1 AUTOTRACE1 BACKUP1 CHARACTER-SET1 CLUSTER5 CLUSTER MANAGEMENT1 CONNECTED-USERS3 CONSTRAINTS3 DATA INTEGRITY3 DATA-MANAGEMENT8 DATABASE53 DATABASE ADMINISTRATION20 DATABASE MANAGEMENT2 DATABASE OPTIMIZATION1 DATABASE SIZE1 DATABASE START-UP1 DATABASE TUNING1 DATAFILES5 DBA15 DBA TOOLS1 DBA_CONS_COLUMNS1 DBA_CONSTRAINTS6 DBA_DATA_FILES5 DBA_ERRORS1 DBA_EXTENTS1 DBA_FEATURE_USAGE_STATISTICS1 DBA_FREE_SPACE2 DBA_INDEXES1 DBA_LOCK1 DBA_OBJECTS7 DBA_ROLES1 DBA_ROLLBACK_SEGS1 DBA_SEGMENTS9 DBA_SOURCE1 DBA_TAB_COLUMNS1 DBA_TABLES2 DBA_TABLESPACES1 DBA_TEMP_FILES2 DBA_TS_QUOTAS1 DBA_UNDO_EXTENTS1 DBA_USERS1 DBMS_METADATA1 DBMS_STATS5 DBMS_STATS.GATHER_DATABASE_STATS1 DBMS_STATS.GATHER_SCHEMA_STATS1 DDL1 DEVELOPMENT1 DISK GROUP CREATION1 DISK INFORMATION5 DISK SPACE ANALYSIS1 DISKGROUP4 EXECUTION PLAN1 EXPLAIN-PLAN2 EXPORT1 EXTERNAL REDUNDANCY1 FEATURES1 FREE SPACE1 GATHER_SYSTEM_STATS1 HASH1 HOT-BACKUP1 I/O1 IMPORT1 INDEX1 INSTALLED3 JAVA1 LAST-ACTIVITY1 LATCH1 LATCH CONTENTION1 MAINTENANCE1 MANAGEMENT8 MANAGING10 MODIFY1 MONITORING7 NLS_DATABASE_PARAMETERS1 OBJ$1 OBJECTS6 OIFCFG1 OPTIMIZATION17 ORACHECK1 ORACLE103 ORACLE - DATABASE ADMINISTRATION - SQL - DBA_CONSTRAINTS1 ORACLE ADMINISTRATION1 ORACLE ASM6 ORACLE CLUSTERWARE11 ORACLE CRS9 ORACLE DATABASE9 ORACLE DBA1 OSUSER1 PARAMETERS2 PEFORMANCE1 PERFORMANCE25 PERFORMANCE ANALYSIS1 PERFORMANCE OPTIMIZATION3 PERFORMANCE TUNING10 PERFORMANCE-MONITORING5 PL SQL1 PLSQL1 PRIVILEGES1 PROCEDURE2 QUERY1 QUERY ANALYSIS1 QUERY OPTIMIZATION3 QUERY-TUNING2 QUOTAS1 RAC7 RECOVERY3 RESOURCE OPTIMIZATION3 ROLE PRIVILEGES1 ROLE_SYS_PRIVS1 ROLE_TAB_PRIVS1 SCHEMA SPACE USED1 SCRIPTING1 SCRIPTS3 SECURITY1 SEGMENTS3 SESSION-PID1 SESSIONS1 SESSIONS-SORTED1 SHOW2 SHOW ROLES1 SHOW_TABLE_ROLE_PRIVILEGES1 SHOW-USER-SQL5 SPACE USAGE1 SPACE USED1 SPFILE1 SQL40 SQL COMMANDS1 SQL OPTIMIZATION1 SQL PERFORMANCE2 SQL SCRIPTS1 SQL STATISTICS1 SQL TUTORIAL1 SQL-QUERIES1 SRVCTL3 START4 START-UP TIME1 STATISTICS3 STATISTICS MANAGEMENT2 STOP4 STORAGE2 STORAGE CAPACITY MONITORING1 STORAGE MANAGEMENT5 TABLE1 TABLESPACE10 TEMP2 TRACING2 TRANSACTIONS1 TROUBLESHOOTING11 TUNING4 UNDO_RETENTION1 USAGE2 USED SPACE1 USER4 USER SPACE1 USER$1 USERS2 UTLXPLS1 V$ASM_OPERATION1 V$BACKUP1 V$CONTROLFILE3 V$DATAFILE7 V$DB_CACHE_ADVICE1 V$FILESTAT1 V$INSTANCE1 V$LOCK2 V$LOCKED_OBJECT1 V$LOG3 V$LOGFILE4 V$PARAMETER2 V$PROCESS2 V$SEGMENT_STATISTICS1 V$SESSION12 V$SESSION_LONGOPS1 V$SESSION_WAIT1 V$SESSTAT1 V$SQLAREA8 V$STATNAME2 V$SYSSTAT2 V$SYSTEM_EVENT2 V$TEMPFILE3 V$TRANSACTION1 V$WAITSTAT1 VDATAFILE2 X$BH1 X$KCBFWAITV1
[A~Z][0~9]
OracleScripts.com

Copyright  ORACLESCRIPTS.COM. All Rights Reserved

to-top