Data Warehousing (1107) Databases (3004) JAVA Related 2673) MainFrames (975) Microsoft Related (2296) Networking (553)
Operating Systems (919) Programming (3254) SAP (2318) Testing FAQS (1674) Testing Material (252) Web Related (994)

what is '1000 projects'?

'fullinterview.com' is a educational content website dedicated to finding and realizing final year projects for btech, be, mtech, mca students, here you can search, find your projects and get guidance from experts the below are the different technological projects.
visual Studio projects .net projects, asp projects, c & ds projects, c++ projects (all), cold fusion projects, delphi projects, java projects, perl projects, php projects, sql projects, vc++ projects, visual basic projects.

how it works?

well, everything on this site is submitted by the student and professional community. after you submit your project, it is being verified and approved by our administrator. after approval, other people can read/discuss it, save to favorites.

more number of projects?

here you can find morethan 1000 projects on different technologies, if u want to get more projects please visit our sister sites www.fullinterview.com & Chetanasprojects.com


Category Articles
What is the Clone Cursor Options for on the SaveAs dialogs in the Schema Browser and (SQL) Editor?
Added on Sat, Jan 2, 2010
When "Clone Cursor" is turned OFF, and a user goes to the "save as" screen and begins an export, we use the actual cursor which is tied to the data grid. The advantage to this is that the query does not need to be re-executed. The disadvantage to... Read More
What is the OCI Buffer Array Size option for in the View - Options - Oracle - General section?
Added on Sat, Jan 2, 2010
After a SELECT query is executed, we must retrieve the rows from the Oracle server to your PC. We do not retrieve the rows all at once, nor do we retrieve them one at a time (unless there is a LONG or LOB column involved). We retrieve the rows in... Read More
Why does saving to XLS instance not work sometimes
Added on Sat, Jan 2, 2010
From the Toad lists. One of my co-workers experiences a very strange problem. When he is saving the results of a query using "Save As" into Excel Instance nothing happens. There is 1 opened Excel and it stays empty. All other "save as" option... Read More
How to add DateTime Control in ormal DataGrid Server Control
Added on Sat, Jan 2, 2010
How to insert value in the combo box cell of dataGridView using insert query in C#?How to handle the data error event?
Added on Sat, Jan 2, 2010
No answer available currently. Be the first one to reply to this question by submitting your answer from the form below.   Read More
How to sort the data in Datagrid ? when we use DataBound event of Datagrid, I want to display te data using controls....
Added on Sat, Jan 2, 2010
Question : How to sort the data in Datagrid ? when we use DataBound event of Datagrid, I want to display te data using controls.... For an example, If i click a button, which is outside of the datagrid, entire data should be shown. 1st column... Read More
Consider a sales invoice and the programmer has to save multiple items in one sales invoice. On entering the rate and qty, the amount and total amount should be automatically calculated. The invoice number will be the same for all items in that invoi
Added on Sat, Jan 2, 2010
No answer available currently. Be the first one to reply to this question by submitting your answer from the form below.   Read More
How can I see TIMESTAMP and INTERVAL data?
Added on Sat, Jan 2, 2010
TOAD 7.5 and up can show TIMESTAMP and INTERVAL data in its data grids if you are using a 9.0.1 or higher Oracle client. TOAD 9.0.1 supports TIMESTAMP and INTERVAL data in its "run as script" function. TOAD versions 7.4 and previous do not support... Read More
How can I see nested object data?
Added on Sat, Jan 2, 2010
TOAD 7.5 and up can show nested object type data in popups from the data grids if you are using an 8.0 or higher Oracle client. Right-click on the cell that should contain the data and choose " Popup editor". TOAD 9.0.1 now supports nested... Read More
How do I copy a whole row or multiple rows of data? S
Added on Sat, Jan 2, 2010
To copy one row of data, put your cursor in a cell in the grid and press Ctrl+Insert. This will copy the row and its column headers to the clipboard. To copy multiple rows of data, right-click in the grid and choose "Allow multiselect". Use Shift... Read More
How do I delete a record?
Added on Sat, Jan 2, 2010
Assuming that the result set is editable (i.e. you have written a query that includes the ROWID, or you have used the TOAD Edit command), you can do one of the following: * "Delete row" button on the SQL Editor toolbar * CTRL+Del * Single Record... Read More
My string data is all coming out as question marks!
Added on Sat, Jan 2, 2010
We have found that this happens when the database character set is WE8ISO8859P1, and the Oracle client is 9.2.0.1. This is an Oracle bug, and upgrading your client to 9.2.0.4 or higher should resolve the problem. In any other case, please generate... Read More
Why can't I add a new record by hitting the down arrow key in the data tab?
Added on Sat, Jan 2, 2010
Please upgrade your copy of TOAD to at least version 7.4.0.3. This functionality has been restored. Read More
Why can't I edit the results of a query in the SQL Editor?
Added on Sat, Jan 2, 2010
Query statements MUST return the ROWID to be updatable. For example: select * from employee where salary > 2000 would not be updatable, whereas: select employee.*, rowid from employee where salary > 2000 would be updatable. To reduce this... Read More
Why can't I set a style in my XLS SaveAs exports of DataGrid data?
Added on Sat, Jan 2, 2010
Try upgrading to the current release of TOAD, as we have obtained an updated XLS component. If you are still experiencing the problem, you can do this: FORMAT → CELLS → NUMBER TAB → change to Currency, Percentage, etc. Read More
How do I name the tabs when I run a script?
Added on Sat, Jan 2, 2010
When you run a script in the MOE using F5, the output of the script is displayed at the bottom of the screen. Each command creates a separate tab for its results, as well as being included in the main script output tab. These tabs are simply named &... Read More
How do I change the grid popup editor font?
Added on Sat, Jan 2, 2010
Another one from the list. Herald asked > I changed the font for the DATA Grids, so I could look at Unicode. Now I see the chosen font in the datagrid, but if I open the popup editor it still gives the old font. Is it possible to change this font... Read More
How to refresh the data in datagrid automatically
Added on Sat, Jan 2, 2010
For refreshing data in data grid control we can use chasing technique Read More
In DataGrid, is it possible to add rows one by one at runtime. That means after entering data in one row next row will be added.
Added on Sat, Jan 2, 2010
Yes, for this you have to use datatable and after inserting the first row in datatable u have to bind that datatable to the grid and next time , first u have to add the row in datatable and next bind it to datagrid. keep on doing. u have to... Read More
What is the Datagird ?
Added on Sat, Jan 2, 2010
Displays text and controls in columns and rows using a template to control appearance.Datagrid controls have built in formatting, sorting and paging capabilities. Read More
How can I see the data in nested tables?
Added on Sat, Jan 2, 2010
TOAD 7.5 and up can show nested table data in popups from the data grids if you are using an 8.0 or higher Oracle client. The nested table data will appear in the grid cell as "(DATASET)". Right-click over this cell and choose " Popup editor".... Read More
How can I view the Chinese and Japanese character sets through Toad?
Added on Sat, Jan 2, 2010
Reset NLS_LANG on your Client machine to AMERICAN_AMERICA.JA16SJIS to view Japanese and AMERICAN_AMERICA.ZHT16BIG5 to view Chinese. Then change the font script for each language by right clicking on the data and choosing Grid Options | Data Grids -... Read More
Why can't I add an entry via the grid for a table containing a CLOB column?
Added on Sat, Jan 2, 2010
In older versions of TOAD, the grid is limited to adding/modifying CLOB's for existing records. This should be working in TOAD 7.6. Note, however, that since TOAD does not support Unicode databases, that there are often errors when viewing... Read More





   copy right ® all rights reserved by www.fullinterview.com