Issues
Come accross issues then solve them
SQL SERVER
Q1. ALTER TABLE DROP COLUMN failed because one or more objects access this column
solved:
```sql server
alter table CompanyTransactions drop constraint [df__CompanyTr__Creat__0cdae408]; alter table CompanyTransactions drop column [Created];
```