I am sure this is as simple as a question can get but I have been stumped on it so figured that I would ask in hope of a quick response. Using an OLEDB connection I want to do a select statement but for the table I am selecting from, a table member also has to be there too which seems to be messing up my results.

Normally I would write to get the column "col1":

SELECT lib1.table.col1 FROM lib1.table 

For the table I need the information from, the table has a "submember". From what I have gathered the syntax is something like this:

SELECT lib1.table(submember).col1 FROM lib1.table(submember)

The problem is that the results are giving me every column within the table, not just my "col1" data. I hope that this is well explained for what I am looking for. Thanks ahead of time for anyone who helps.

link|improve this question

why the tags for vb.net and vba? These are two completely different languages / technologies... – Daniel Hilgarth Dec 5 '11 at 16:18
Those are where the OLEDB connection is being made – Eric F Dec 5 '11 at 16:20
So you have a VB.NET application and a VBA application, both with the same select statement? – Daniel Hilgarth Dec 5 '11 at 16:23
2  
To be honest, I have never seen this submember syntax. What DBMS are you using? – Daniel Hilgarth Dec 5 '11 at 16:26
1  
try using bracket notation instead of dots and parenthesis. so lib1[table][submember][col1] – jcolebrand Dec 5 '11 at 16:43
show 7 more comments
feedback

2 Answers

up vote 1 down vote accepted

create alias library.aliasname for library.table(member)

Then do the select on the alias

link|improve this answer
I do not have access on my server to create tables. Any other ideas? – Eric F Dec 5 '11 at 17:10
To the best of my knowledge, this is the only option. I don't know what 6.1 or 7.1 can offer. – Mike Wills Dec 5 '11 at 17:46
This is actually what I ended up doing (more or less). Thank you for all of your help – Eric F Dec 6 '11 at 15:30
feedback

You should be able to create an ALIAS in QTEMP:

CREATE ALIAS QTEMP.TABLE FOR LIB1.TABLE (SUBMEMBER)

And then query through the temporarily created alias:

SELECT COL1 FROM QTEMP.TABLE

It will be automatically removed when your connection ends.

link|improve this answer
Agreed, create these kinds of temporary aliases in QTEMP (what amounts to a per-job, full-authorization scratch directory). If your connection job doesn't have access to that, you're going to have all sorts of trouble anyways... – X-Zero Dec 5 '11 at 18:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.