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-27059: could not reduce file size

1 7978

ORA-27060: could not set close-on-exec bit on file

1 2960

ORA-27061: waiting for async I/Os failed

2 8798

ORA-27062: could not find pending async I/Os

1 5108

ORA-27063: number of bytes read/written is incorrect

1 7574

ORA-27064: cannot perform async I/O to file

1 3789

ORA-27065: cannot perform async vector I/O to file

1 2749

ORA-27066: number of buffers in vector I/O exceeds maximum

1 2744

ORA-27067: size of I/O buffer is invalid

1 9025

ORA-27068: I/O buffer is not aligned properly

1 3541

ORA-27069: attempt to do I/O beyond the range of the file

1 7486

ORA-27070: async read/write failed

1 6522

ORA-27071: unable to seek to desired position in file

1 3323

ORA-27072: File I/O error

1 7556

ORA-27073: Trying to close a file which has async I/Os pending to be dequeued

1 3355


Un-Answered Questions { Database Errors }

IMP-00063: Warning: Skipping table "string"."string" because object type "string"."string" cannot be created or has different identifier

2733


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

2701


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

2521


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

1968


What is SCD (Slowly Changing Dimensions)? What are its types?

2662


IMP-00064: Definition of LOB was truncated by export

6415


NZE-28868: Peer certificate chain check failed.

2802


What severity level errors are managed in TRY-CATCH block?

2223


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

2653


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

2212


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

1941


hp asking for replication floppy to do reinstall 25254 server assistant

2882


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

2410


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

2648


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 ??

1679