I have column called code in source table which is of type varchar(40) and they changed it from varchar(40) to varchar(65). We created a ETL Package and which is creating 3 tables. In all 3 table's the column need's to be changed from varchar(40) to varchar(65).

Now I need to test this change. I know By looking into the table structure we can simply say that the column is changed from varchar(40) to varchar(65).

Is there any other way to Test this change?

Any Help is greatly appreciated !!!!

link|improve this question

21% accept rate
1  
Try inserting value for that column having length greater than 40? – shahkalpesh Nov 18 '09 at 5:35
I don't have a access to Insert a Value in the table – Anoop Nov 18 '09 at 5:53
feedback

3 Answers

Did 'they' keep the original data anywhere? Arrange to test that the values are still the same. Or perhaps it is now in use, are there any values longer than 40 characters?

link|improve this answer
feedback

Try DESC TableName gives you enough and more of confirmation.

link|improve this answer
feedback

Get column information using INFORMATION_SCHEMA views:

SELECT  c.DATA_TYPE,
        c.CHARACTER_MAXIMUM_LENGTH
FROM    INFORMATION_SCHEMA.COLUMNS c
WHERE   c.TABLE_SCHEMA = 'dbo' --//@todo: put your schema name here
    AND c.TABLE_NAME  = 'MyTableName1'
    AND c.COLUMN_NAME = 'MyColumnName1'

See here for description of returned columns, where you mostly need DATA_TYPE and CHARACTER_MAXIMUM_LENGTH.

You can, of course, create 1 query for all 3 checks using:

SELECT  c.DATA_TYPE,
        c.CHARACTER_MAXIMUM_LENGTH
FROM    INFORMATION_SCHEMA.COLUMNS c
WHERE   c.TABLE_SCHEMA = 'dbo' --//@todo: put your schema name here
    AND(   (c.TABLE_NAME = 'MyTableName1' AND c.COLUMN_NAME = 'MyColumnName1')
        OR (c.TABLE_NAME = 'MyTableName2' AND c.COLUMN_NAME = 'MyColumnName2')
        OR (c.TABLE_NAME = 'MyTableName3' AND c.COLUMN_NAME = 'MyColumnName3')
        )
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.