I thought I would post this here to see if anyone has run into this issue.
If someone could help me out here it would be great! I am doing some work moving a vb6 app from DB2 to SQL Server. Inside the app is a query such as this:
The issue is that DB2 didn't care about the fictitious 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. Oh, these cols are in a disconnected recordset.
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 a vb6 app from DB2 to SQL Server. Inside the app is a query such as this:
Code:
Select readcol1, realcol2, 0 as fictitionalcol, 0 as fictitionalcol from table where criteria = X
The issue is that DB2 didn't care about the fictitious 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. Oh, these cols are in a disconnected recordset.
Any guidance on whether this is true or not and a work around would be great!