I am accessing a table that is owned by another user in MSSQL, and as
such need to reference the table as otherOwner.tableName.columnName,
which becomes

SELECT otherOwner.tabeleName.columnName AS
otherOwner.tableName_columnName

Which is not allowed because an alias may not have a '.' in it in
MSSQL unless quotes are around it

Allowed:
SELECT otherOwner.tabeleName.columnName AS
'otherOwner.tableName_columnName'

Thank you,
Gordon Murphy

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to