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

TNS-12665: NLS string open failed

1 3490

TNS-12666: Dedicated server: outbound transport protocol different from inbound

1 2802

TNS-12667: Shared server: outbound transport protocol different from inbound

1 2845

TNS-12668: Dedicated server: outbound protocol does not support proxies

1 2940

TNS-12669: Shared server: outbound protocol does not support proxies

1 2903

TNS-12670: Incorrect role password

1 3011

TNS-12671: Shared server: adapter failed to save context

1 2939

TNS-12672: Database logon failure

1 3381

TNS-12673: Dedicated server: context not saved

1 2968

TNS-12674: Shared server: proxy context not saved

1 2870

TNS-12675: External user name not available yet

1 3157

TNS-12676: Server received internal error from client

1 3596

TNS-12677: Authentication service not supported by database link

1 3093

TNS-12678: Authentication disabled but required

1 2974

TNS-12679: Native services disabled by other process but required

1 5638


Un-Answered Questions { Database Errors }

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

3436


In my project I am using star schema and only diimension tables are loaded and not fact tables any one can help me why it is happening? Plase guide me.

2945


IMP-00070: Lob definitions in dump file are inconsistent with database.

1797


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

8875


IMP-00064: Definition of LOB was truncated by export

6465


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

1665


what is new g/l functionality

2674


what is the instrument that used in Mechanical Energy??

2733


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

3703


ORA-26032: index string.string loading aborted after string keys

2177


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

2298


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

2253


NZE-28868: Peer certificate chain check failed.

2862


ORA-26027: unique index string.string partition string initially in unusable state

6790


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

2709