I have a table in SQL server 2008 R2 with 100 Million records.
One of the column is a foreign key to another table.
Table Student
ID Name AccessToLap
1 Mike 1
Table AccessType
ID Name
1 Allow
2 Deny
How can i change the column AccessToLab from int to varchar and change the values from 1 to Allow and from 2 to Deny without dropping and recreating the table.