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-04001: sequence parameter string must be an integer

1 4070

ORA-04002: INCREMENT must be a non-zero integer

1 10780

ORA-04003: sequence parameter string exceeds maximum size allowed (string digits)

1 3815

ORA-04004: MINVALUE must be less than MAXVALUE

1 6288

ORA-04005: INCREMENT must be less than MAXVALUE minus MINVALUE

1 6024

ORA-04006: START WITH cannot be less than MINVALUE

1 11228

ORA-04007: MINVALUE cannot be made to exceed the current value

1 14715

ORA-04008: START WITH cannot be more than MAXVALUE

1 4554

ORA-04009: MAXVALUE cannot be made to be less than the current value

1 6503

ORA-04010: the number of values to CACHE must be greater than 1

1 8189

ORA-04011: sequence string must range between string and string

1 3132

ORA-04012: object is not a sequence

1 3266

ORA-04013: number to CACHE must be less than one cycle

1 17230

ORA-04014: descending sequences that CYCLE must specify MINVALUE

1 2881

ORA-04015: ascending sequences that CYCLE must specify MAXVALUE

1 5010


Un-Answered Questions { Database Errors }

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

2721


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

2035


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

1671


ORA-07497: sdpri: cannot create trace file 'string'; errno = string.

2866


When i am connect database through toad,one error occured. ORA-12514: TNS:listener does not currently know of service requested in connect descriptor. plz help me thanks advance.............

2868


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

2589


what is new g/l functionality

2681


What is live lock, deadlock and what is Lock escalation?

2502


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


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


today's peformance is less than yesturday.it took 1 mint and today's performance is 7 mints.guys can anyone answer to mu question in sql

2523


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

8883


NZE-28868: Peer certificate chain check failed.

2868


when i ran any workflow or session, getting below error: seesion task instance[s_xxx]: Execution terminated unexpecterdly

2300


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

2760