Is username in this case the name of the username that you're logged in as, or dbo? In other words, are you having to do
select * from dbo.tablename or select * from myuser.tablename If it's the second, then your tables are not being created as dbo-owned tables, and your create table statements need to be create table dbo.tablename ... If it's the first, I don't know what to tell you, the dbo. should be implied. - Carl L ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255717 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

