Hi All,
If someone could help me out here it would be great! I am doing some work moving an app from DB2 to SQL Server. Inside the app is a query such as this:
The issue is that DB2 did care about the fictious columns it seems while SQL Server does, it seems to know that they are not in the db table and renders them read only I think. I may be out to lunch.
Any guidance on whether this is true or not and a work around would be great!
If someone could help me out here it would be great! I am doing some work moving an app from DB2 to SQL Server. Inside the app is a query such as this:
Code:
Select readcol1, realcol2, 0 as fictionalcol, 0 as fictionalcol from table where criteria = X
The issue is that DB2 did care about the fictious columns it seems while SQL Server does, it seems to know that they are not in the db table and renders them read only I think. I may be out to lunch.
Any guidance on whether this is true or not and a work around would be great!