Viewing 5 posts - 1 through 5 (of 5 total)
Just the thought of writing simple queries for that system already gave me a headache. And I feel sorry for the last developer to say "Not it!" when management...
May 20, 2008 at 2:17 pm
SELECT * FROM INFORMATION_SCHEMA.COLUMNS C
INNER JOIN INFORMATION_SCHEMA.TABLES T
ON T.table_name = C.table_name
WHERE table_type = 'base table'
AND column_name = '**your column**'
This can be used for any column name without returning system tables....
May 19, 2008 at 1:59 pm
I think consistency is the place to start, but I do not agree that it will necessarily lead to improved quality code. However, consistency does provide a framework that...
May 16, 2008 at 7:56 am
I'm studying for 70-431 also, and dumps will never give you the same knowledge that you can get from a decent course or book combined with some good old fashion...
May 15, 2008 at 9:54 am
At the connection screen, it should show you which User name it will attempt to authenticate in the form of DOMAIN\Username. In XP, you should be able to right-click...
April 24, 2008 at 8:56 am
Viewing 5 posts - 1 through 5 (of 5 total)