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-01556: MINEXTENTS for rollback segment must be greater than 1

1 3346

ORA-01557: rollback segment extents must be at least string blocks

1 3402

ORA-01558: out of transaction ID's in rollback segment string

1 4337

ORA-01559: MAXEXTENTS for rollback segment must be greater than 1

1 2883

ORA-01560: LIKE pattern contains partial or illegal character

2 6115

ORA-01561: failed to remove all objects in the tablespace specified

1 9781

ORA-01562: failed to extend rollback segment number string

1 4656

ORA-01563: rollback segment is PUBLIC, need to use the keyword PUBLIC

1 3854

ORA-01564: rollback segment is not PUBLIC

1 3540

ORA-01565: error in identifying file 'string'

1 5998

ORA-01566: file specified more than once in DROP LOGFILE

1 3455

ORA-01567: dropping log string would leave less than 2 log files for instance string (thread string)

1 10150

ORA-01568: cannot set space quota on PUBLIC

1 3496

ORA-01569: data file too small for system dictionary tables

1 3458

ORA-01570: MINEXTENTS must be no larger than the string extents currently allocated

1 3918


Un-Answered Questions { Database Errors }

How to resolve QSM-01108 error. I have no OR conditions in my query, but do have 9 IN conditions. The error says the max limit is 2 while I have 257 number of disjuncts. However, if I remove even a single IN condition, the query is rewritten. I cannot change my query. How can I resolve this issue?

2721


How to view the error log for any specific instance?

2484


IMP-00064: Definition of LOB was truncated by export

6413


I entered the data in SQL toad version 9.0.1 in English and Arabic language but when i do the query i get the data in Arabic language with (??? question mark) ,please your support.

1648


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

2410


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

1616


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

2645


invalid quantity specification negative quantity are not allowed for this item please check this item definition quantity

3383


what is the instrument that used in Mechanical Energy??

2680


ORA-16627: No standby databases support the overall protection mode.

3988


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

2650


How will you Handle Error in SQL SERVER 2008?

2401


ORA-16626: failed to enable specified object

2217


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

3666


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

1677