Forum Discussion

ExpandUser's avatar
ExpandUser
Copper Contributor
Feb 08, 2024

Are these aliases?

The real table name is: MembersWest

 

And this is some of the code:

myAdapter.Fill(ds, "Member")

ds.Tables("Member")

 

But there are no errors while running it.

  • olafhelper's avatar
    olafhelper
    Bronze Contributor

    ExpandUser , with that less on informations no one can guess; could be a view, stored procedure, sysnonum.

    You can query it with

    select *
    from sys.objects
    where name = 'Member'

Resources