Create Oracle database link
Syntax and explanation on creating Oracle database links.
Posted: October 23rd, 2009
The GNU/Linux Advanced Administration |
|
Free Linux Manuals ! ![]() A Newbie's Getting Started Guide to Linux |
|
|
-- FREE -- IT Magazine Subscriptions
Oracle Magazine Contains technology strategy articles, sample code, tips, Oracle and partner news, how-to articles for developers and DBAs |
WebSite Magazine Practical advice, helpful tools and insights for website owners |
Dr Dobb's Journal enables coders to write the most efficient programs and help in daily programming quandaries |
DM Review is recognized as the premier business intelligence, analytics and data warehousing publication |
| Various other Free IT magazine subscriptions |
- Featured ebook -
Database Normalization by Alf Pedersen
Understand
and
master
how to
normalize
a database
using methods richly
documented
with graphical ERD and server diagram examples
|
|
RSS Social Bookmarking |
Syntax and explanation on creating Oracle database links.
Posted: October 23rd, 2009
Figure out how long a transaction will roll back.
Posted: March 29th, 2012
Here is a neat SQL query that will show you the history of blocking locks on your Oracle database in the past 6 hours: select j.sid, s.spid, s.serial#, j.log_user, j.job, j.broken, j.failures, j.last_date||’:’||j.last_sec last_date, j.this_date||’:’||j.this_sec this_date, j.next_date||’:’||j.next_sec next_date, (j.next_date – j.last_date) interval, j.what from (select djr.SID, dj.LOG_USER, dj.JOB, dj.BROKEN, dj.FAILURES, dj.LAST_DATE, dj.LAST_SEC, dj.THIS_DATE, dj.THIS_SEC, [...]
Posted: February 7th, 2012
Saw this script on dba-oracle.com , very handy if you need to create a tiny database to test some parameter changes on. Make sure your environment is set: ORACLE_SID and ORACLE_HOME ( set it in /etc/oratab first for ease of use ). Use this template to create an inittestdb.ora (presuming your db name is testdb) [...]
Posted: January 31st, 2012
How to get Oracle Text installed and configured on your database in case it isn’t installed by default: SQL> connect SYS/password as SYSDBA SQL> spool text_install.txt SQL> @?/ctx/admin/catctx.sql CTXSYS SYSAUX TEMP NOLOCK SQL> connect CTXSYS/password@tns_alias SQL> @?/ctx/admin/defaults/drdefus.sql SQL> spool off connect SYS/password as SYSDBA set pages 1000 col object_name format a40 col object_type format a20 [...]
Posted: January 24th, 2012
Scenario: Your backup shell script has a zip statement for older backup files to conserve disk space on your backup server. Your RMAN backup scripts however contain a crosscheck command which effectively removes the metadata about the compressed backup pieces from the controlfile. (Let’s presume no recovery catalog is being used). Your problem comes in [...]
Posted: September 13th, 2011
Avoid installation time, just clone Oracle Home to your new server..
Posted: June 12th, 2011
This is useful when you find that a runaway ghost process is hogging CPU or memory and you can see what the OS level sid is, but you have no idea which job it is related to
Posted: June 10th, 2011
Command to check Centos Release: cat /etc/*release*
Posted: May 3rd, 2011
Need to see how many unique ORA- errors your alert log contains ? cat alert_DBID.log | grep ORA- | sort | uniq That’s all there is to it..
Posted: February 27th, 2010
List of companies who offer Oracle database hosting
Posted: October 23rd, 2009
Read up here to find solutions to common db link setup mistakes and errors.
Posted: October 23rd, 2009
How many database links are in existence on your database, how many are in use ?
Posted: October 23rd, 2009
Limit the number of allowable db links per session for your database
Posted: October 23rd, 2009
Want to spare yourself the db link syntax in daily use ?
Hide it with a view or a synonym.
Posted: October 23rd, 2009
Oracle Database Links Background information
Posted: October 23rd, 2009
oracle standby databases: quick command reference
Posted: October 23rd, 2009
Use grep to kill a range of similar oracle processes
Posted: October 23rd, 2009
Open Cursors
What they are, How to manage them,
Resolving ORA-01000
Posted: October 23rd, 2009
Identify the oracle session whose shadow process is using excessive resources, with these ‘Match os process to oracle session’ instructions
Posted: October 23rd, 2009
Use this unsupported but useful package to log your user error code in the database’s alert.log
Posted: October 23rd, 2009
How to compile another Oracle user schema.
Posted: October 23rd, 2009
NFS Mount a linux server’s filesystem to another server
Posted: October 23rd, 2009
A foreign key is one of the different types of Oracle constraints.
Posted: October 23rd, 2009
The Oracle Delete statement allows you to remove rows from a table.
Posted: October 23rd, 2009
Look at these examples of the Oracle SQL Update statement
Posted: October 23rd, 2009
The Oracle Insert statement allows you to add data to a table using the following syntax:
Posted: October 23rd, 2009
This tutorial will show you how to use the correct syntax to query data in the Oracle database.
Posted: October 23rd, 2009
SQL is short for Structured Query Language.
It is the language you will use to access any data structure or its data in the Oracle database.
Posted: October 23rd, 2009
Finding Large Directories and files on SunOs
Posted: September 13th, 2009
Your listener.log file can get quite large if you do not make it part of your housekeeping scripts, and renaming it while the listener is running is not a good idea.
Here is the method to follow to clean it up while your listener is still running.
Posted: September 13th, 2009
quick sql to determine your database size exluding tempfiles.
Posted: June 30th, 2009
Kill a bunch of related orphan Oracle processes with one command. Permalink — click for full blog post Related Blogs Related Blogs on kill oracle process Related Blogs on oracle process
Posted: January 15th, 2009
We’ve partnered with Insight24 to bring you great free technology-focused webcasts and videos. Permalink — click for full blog post Related Blogs Related Blogs on technology webcasts
Posted: January 15th, 2009
Quick tutorial to download, install and use Free VNC for Linux. This will give you ‘remote desktop’-type functionality on UNix. Permalink — click for full blog post
Posted: January 15th, 2009
Quick page to remind myself what options to use with the linux du command to summarize the list of directories, not all the files. Permalink — click for full blog post
Posted: January 15th, 2009
Installing and running vsftpd on your CentOS 4.5 server Permalink — click for full blog post
Posted: January 15th, 2009
Use these steps to publish oracle awr reports regularly and mail them to yourself Permalink — click for full blog post
Posted: January 15th, 2009
Automate the transfer of files across servers with this oracle ftp script. Permalink — click for full blog post
Posted: January 15th, 2009