Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...



Database Errors Interview Questions
Questions Answers Views Company eMail

ORA-19551: device is busy, device type: string, device name: string

1 3036

ORA-19552: device type string is invalid

1 3465

ORA-19553: device name string is invalid

1 3260

ORA-19554: error allocating device, device type: string, device name: string

1 4116

ORA-19555: invalid LOG_ARCHIVE_MIN_SUCCEED_DEST parameter value

1 4360

ORA-19556: required destination LOG_ARCHIVE_DUPLEX_DEST currently is deferred

1 3199

ORA-19557: device error, device type: string, device name: string

1 3600

ORA-19558: error de-allocating device

1 5569

ORA-19559: error sending device command: string

1 5728

ORA-19560: %s is not a valid device limit

1 3312

ORA-19561: %s requires a DISK channel

1 2969

ORA-19562: file string is empty

1 3072

ORA-19563: %s header validation failed for file string

1 6257

ORA-19564: error occurred writing string bytes at block number string

1 3261

ORA-19565: BACKUP_TAPE_IO_SLAVES not enabled when duplexing to sequential devices

1 5073


Un-Answered Questions { Database Errors }

how can i get the question papers of year 2006 and 2007 of 12th commerce gujarat board

2255


ORA-26028: index string.string initially in unusable state

3916


What is the meaning of lock escalation and why/how to stop this?

2715


if the lengths of two wires are same and the area of cross sections is 4:7 then what will be the ratio of current passing through these wires

2757


what is the instrument that used in Mechanical Energy??

2736


ORA-26029: index string.string partition string initially in unusable state

2235


Hi guys, I have four tables those are emp,dept,eliminate and uneliminate. i wrote small cursor..when i run, it display one error (ORA-01403 nodata found)... The query is: Declare cursor c1 is select e.ename emp_name from emp e,dept d where e.deptno=d.deptno group by deptno; r1 c1%rowtype; test_emp varchar2(200); begin for r1 in c1 loop begin select eliminate_emp into test_emp from eliminate t,uneliminate ut where t.number=ut.number and t.deptno=e.deptno and rownum<1; end; dbms_output.put_line(r1.emp_name); end loop; end; Thanks...

2803


When you get following error? Error 3154: The backup set holds a backup of a database other than the existing database.

2586


IMP-00096: Warning: Skipping table "string"."string" because type synonym "string"."string" cannot be created

1669


Hi, I am trying to encode data from flatfile and then to decode the encoded data to original form. Procedures that I followed:- 1. Encoded the field 'A_ID' using AES_ENCRYPT(A_ID,'abd') in the expression transformation. The A_ID got encoded in the output table(oracle) 2. To decode this back I used AES_DECRYPT(A_ID,'abd'). But after executing the workflow, I am not getting any data in output. can anybody tell me how to decrypt the encoded data back to original form ??

1736


I have written the code as below. here problem is that dt remain null. how to solve thst please tell me. public partial class Form1 : Form { private DataTable DTable; private DataRow drow; public Form1() { InitializeComponent(); } private OleDbConnection getConnection() { OleDbConnection con=new OleDbConnection (@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Documents and Settings\Administrator\My Documents\Visual Studio 2008\Projects\winApp for Student\winApp for Student\App_Data\SchooMgnSystem.mdb;Persist Security Info=True"); return con; } private void button1_Click(object sender, EventArgs e) { InsertData(); } private void InsertData() { if (DTable==null) { DTable = new DataTable(); DTable.Columns.Add("StudID", typeof(string)); DTable.Columns.Add("StudName", typeof (string)); DTable.Columns.Add("Address", typeof(string)); drow = DTable.NewRow(); drow[0] = txtStudID.Text; drow[1] = txtSTudName.Text; drow[2] = txtAddress.Text; DTable.Rows.Add(drow); grdStudent.DataSource = DTable; } else { drow = DTable.NewRow(); drow[0] = txtStudID.Text; drow[1] = txtSTudName.Text; drow[2] = txtAddress.Text; DTable.Rows.Add(drow); grdStudent.DataSource = DTable; } } private void button2_Click(object sender, EventArgs e) { string cmdstr; OleDbCommand cmd; OleDbConnection con = getConnection(); foreach (DataRow Drow in DTable.Rows) { cmdstr = "Insert into Student values('" + drow[0].ToString() + "','" + drow[1].ToString() + "','"+drow [2].ToString()+"')"; cmd = new OleDbCommand(cmdstr,con); try { con.Open(); cmd.ExecuteNonQuery(); } catch (Exception ex) { MessageBox.Show(ex.Message); } finally { con.Close(); } } }

2715


IMP-00060: Warning: Skipping table "string"."string" because object type "string"."string" does not exist or has different identifier

3229


NZE-28868: Peer certificate chain check failed.

2868


How to solve -805 error i.e. Bind issue. There are two conditions- 1) If you have access to the database table 2) If you don't have access to the table

2701


i have created ODBC through Data sources and tests completed sucessfully. when i am Trying to connect SQL Server through ODBC (ODBC :Oracle Open Client Adapter for ODBC 2.0.2.15.0 Microsoft SQL Server 09.00.3054) unable to Connect to SQL*Plus: Release 8.0.4.0.0. it is given following error-message . Error: ORA-03121: NO interface driver connected- function not performed.

2854