Database is down


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Database is down
# 1  
Old 02-06-2012
Database is down

How to find out whether your database is down or not?
Could anyone provide me the command please..

Thanks
C
# 2  
Old 02-06-2012
Depends what database your using, and what system you're using, and how you're able to access the system. Your question is unfortunately too vague to answer, please give us more information.
# 3  
Old 02-06-2012
Sorry for not providing you the detailed information about the database as I am a beginner in this field..How to find out which database/system we are using ?
# 4  
Old 02-06-2012
How do you access the database?
Is this your database, a database of your company, a database on some public network?
# 5  
Old 02-06-2012
I am accessing the database of my company..When i make use of the following command
Code:
$ telnet localhost 1342
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
Connection to localhost closed by foreign host.

What does it mean?

---------- Post updated at 10:43 AM ---------- Previous update was at 10:37 AM ----------

And I see the following error while looking into a log file

Code:
$ ERR: 06-Feb-12 09:59:47: File sqlfunc.c Line 1951: 8200, 8115, Could not connect to database with username [apple].  ORACLE_SID is [oracledv] and TWO_TASK is [].

# 6  
Old 02-06-2012
Means you cannot access to your RDBMS... (So does not necessarily your RDBMS is down...)
Without more information, difficult to say more...
# 7  
Old 02-06-2012
Could be lan issue, or system run out of sockets, temporary directory not full?

Just thoughts...
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

CRON Job to copy database and replace existing database

I have a reseller account with hostgator, which means i have WHM and Cpanel. I have set up a staging environment for one of my wordpress installations (client website), which is essentially sitting at staging.domain.com (live site is at domain.com). The staging website is a complete copy of the... (1 Reply)
Discussion started by: nzrobert
1 Replies

2. Solaris

Can't create database after Oracle Database installation

I installed Oracle 10 software on Solaris 11 Express, everything was fine execpt I can't create database using dbca.rsp file. I populated file with following options. OPERATION_TYPE = "createDatabase" GDBNAME = "solaris_user.domain.com" SID = "solaris_user" TEMPLATENAME = "General... (0 Replies)
Discussion started by: solaris_user
0 Replies

3. Solaris

redirect solaris database from linux database..

hi.. i have a need .. my php runs on my linux redhat box with mysql.. i want my php code to refer another mysql database which is in solaris 10 x86... can u tell me the procedure .. how it can be done through php .. sorry am new to php... is it possible to redirect from linux mysql to... (7 Replies)
Discussion started by: senkerth
7 Replies

4. UNIX for Dummies Questions & Answers

Updating a database

i've got a database setup that references user inputs to see if they are already inputted. What I am wanting to do is allow the user to update the database by typing "update: name" where name is someone already in the database. echo "Enter your name." read NAME location=`find . -name... (2 Replies)
Discussion started by: fufaso
2 Replies

5. Programming

database in C

how can we connect to database(psql) using c language?. Any one help.Pls say the hader file and function's avilable in C for database operation(like connecting,selecting,etc...). (3 Replies)
Discussion started by: sabari
3 Replies

6. Linux

Database

Hai , can any one suggest me any site where the mysql tutor for linux is avialable i am new to the linux mysql so i want to know right from the basics and how can i connect those database to planner tool in linux :) Regards Sanju (1 Reply)
Discussion started by: sanjustudy
1 Replies

7. Programming

AGAIN database

THis is my program #include <stdio.h> #include "sqlext.h" #include "sql.h" #include <string.h> #include<errno.h> // #include "sqlunix.h" #define STR_LEN 30 #define SQL_NTS (-3) #define MYSQLSUCCESS(rc) ((rc==SQL_SUCCESS)||(rc==SQL_SUCCESS_WITH_INFO)) ... (8 Replies)
Discussion started by: ramneek
8 Replies

8. UNIX for Dummies Questions & Answers

Database

I am looking for a database that i can use on Red Hat Linux 8.0. I wish to store records about my clients in it. I do not wish for i to be used on a server (3 Replies)
Discussion started by: adminbw
3 Replies

9. Programming

help in using database in c++

help me in using database in c++ whether datas entered in c++ can be stored in Oracle or access database? give a hint (1 Reply)
Discussion started by: sajin_george
1 Replies
Login or Register to Ask a Question