Prepare for your Next Interview
This is a discussion on script within the SQL forums, part of the Databases category; hi guys, i wanna change the type of a column i have in my table; for example from int(4) to varchar(20). any script to do that?? thanks in ...
|
|||
|
Re: script
Use alter table.
SQL> CREATE TABLE TEST_DATA ( X NUMBER); Table created. SQL> ALTER TABLE TEST_DATA MODIFY (X VARCHAR2(10)); Table altered. You may not decrease the size of a columns or change its data type , unless it contains no data (especially for numeric data) |
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to convert the QTP script as LR script... | coolkrish | LoadRunner | 5 | 07-15-2008 10:49 AM |
| Conversion of QTP script in to Loadrunner script | coolkrish | LoadRunner | 8 | 06-20-2008 05:22 AM |
| VB script within QTP | test.ing59 | QTP | 1 | 05-23-2008 01:19 AM |
| Script which retrieves the current path of the test script | niranjanbiswal | QTP | 1 | 07-18-2007 04:12 PM |