The money was too good. I got stupid.

Jayne ,'Ariel'


Buffistechnology 3: "Press Some Buttons, See What Happens."

Got a question about technology? Ask it here. Discussion of hardware, software, TiVos, multi-region DVDs, Windows, Macs, LINUX, hand-helds, iPods, anything tech related. Better than any helpdesk!


esse - May 04, 2007 3:52:39 am PDT #1467 of 25496
S to the A -- using they/them pronouns!

Oh, heart. A new kind of keyboard: [link]


Gudanov - May 04, 2007 5:21:20 am PDT #1468 of 25496
Coding and Sleeping

I think the command smbstatus will show you printer connections to Windows machines as well. I don't have a Mac, but Windows connectivity and printing should all be the same as my Kubuntu machine.


hippocampus - May 04, 2007 6:26:49 am PDT #1469 of 25496
not your mom's socks.

:: waves to the tech'fistas ::

hillarious Linux movie [loud audio warning].


Liese S. - May 04, 2007 6:50:08 am PDT #1470 of 25496
"Faded like the lilac, he thought."

My webhost is driving me batty. After migrating my control panel unexpectedly to Plesk, they are now incapable of giving me more than one ftp user with access to my web controls. I need to have the control panel login for myself with full control and a web developer login with limited control. Surely this is not that unusual a situation? And anyway, it used to work just fine.


§ ita § - May 04, 2007 7:53:20 am PDT #1471 of 25496
Well not canonically, no, but this is transformative fiction.

Someone help me see what's right in front of my face. I'm running this query:

SELECT colA, colB, * FROM TableA WHERE colAcolB;

and it returns me nothing. However, the following queries do not return the same number of results:

SELECT colA, colB, * FROM TableA;

and

SELECT colA, colB, * FROM TableA WHERE colA=colB;

I'm running Access 2003 on an Access 2000 database. All columns are text.

The first one of the two returns 4K+ more records than the second.

What am I missing? The underlying table is a linked table I can't play with structurally.


Gudanov - May 04, 2007 8:00:00 am PDT #1472 of 25496
Coding and Sleeping

I don't understand the question.

Why wouldn't SELECT colA, colB, * FROM TableA return more rows than SELECT colA, colB, * FROM TableA WHERE colA=colB? What is the issue?


hippocampus - May 04, 2007 8:03:36 am PDT #1473 of 25496
not your mom's socks.

Just guessing/hoping that Access query structure isn't totally kinked - wouldn't:

SELECT colA, colB, * FROM TableA;

Return everything from each column

and

SELECT colA, colB, * FROM TableA WHERE colA=colB;

Return matches?

What are you trying to query?


§ ita § - May 04, 2007 8:08:14 am PDT #1474 of 25496
Well not canonically, no, but this is transformative fiction.

Why wouldn't SELECT colA, colB, * FROM TableA return more rows than SELECT colA, colB, * FROM TableA WHERE colA=colB?

If there are no rows where colAcolB (as implied by the first query returning nothing), then those two queries should return the same results, yes?

My big problem is that I know records satisfy the very first query. I can see them. I just can't work out how to return only those.

Oh! Right! The board ate my <> in the first query. It should read

SELECT colA, colB, * FROM TableA WHERE colA<>colB;


Gudanov - May 04, 2007 8:13:14 am PDT #1475 of 25496
Coding and Sleeping

That makes sense now.

How about SELECT colA, colB, * FROM TableA WHERE NOT(colA=colB)?


§ ita § - May 04, 2007 8:16:21 am PDT #1476 of 25496
Well not canonically, no, but this is transformative fiction.

How about SELECT colA, colB, * FROM TableA WHERE NOT(colA=colB)?

Empty set, I'm afraid.

Am I making an error in translation or syntax? I do hate Access, but this is extra frustrating.