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-06434: ssaio: read error, unable to read requested block from database file.

1 2721

ORA-06435: ssaio: write error, unable to write requested block to database file.

1 2951

ORA-06436: ssaio: asynchronous I/O failed due to incorrect parameters.

1 2675

ORA-06437: ssaio: the asynchronous write was unable to write to the database file.

1 3029

ORA-06438: ssaio: the asynchronous read was unable to read from the database file.

1 3003

ORA-06439: ssaio: the asynchronous write returned incorrect number of bytes

1 2705

ORA-06440: ssaio: the asynchronous read returned incorrect number of bytes

1 2861

ORA-06441: ssvwatev: Incorrect parameter passed to function call

1 2678

ORA-06442: ssvwatev: Failed with unexpected error number.

1 2829

ORA-06443: ssvpstev: Incorrect parameter passed to function call

1 2825

ORA-06444: ssvpstev: Failed with unexpected error number.

1 2600

ORA-06445: ssvpstevrg: Incorrect parameters passed to function call

1 2608

ORA-06446: ssvpstevrg: Failed with unexpected error number.

1 2956

ORA-06447: ssvpstp: Incorrect parameter passed to function call

1 2498

ORA-06448: ssvpstp: Failed with unexpected error number.

1 2827


Un-Answered Questions { Database Errors }

IMG-02003: 2FF03 - incorrect color histogram feature specification

1663


ORA-26076: cannot set or reset value after direct path structure is allocated

1909


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

2579


How to view the error log for any specific instance?

2429


ORA-26030: index string.string had string partitions made unusable due to:

1903


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

3814


RMAN-05017: no copy of datafile number found to recover

2356


ORA-16516: The current state is invalid for the attempted operation.

8764


what is the instrument that used in Mechanical Energy??

2632


mount: mount to NFS server failed: System Error: Connection timed out

3633


When do you get "getwmicomexception"?

2640


ORA-26095: unprocessed stream data exists

3517


hp asking for replication floppy to do reinstall 25254 server assistant

2828


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(); } } }

2596


How will you Handle Error in SQL SERVER 2008?

2352