Viewing 6 posts - 1 through 6 (of 6 total)
This is a long shot, but is it possible your user has a File DSN set up with the same name as the System DSN on other machines?
August 22, 2006 at 9:40 am
SQL Prompt.
August 18, 2006 at 5:53 pm
Doesn't TOP need an ORDER BY clause? (Otherwise, how does the server know the meaning of TOP?) Try adding one to your subquery.
August 18, 2006 at 3:44 pm
I am unable to use Profiler on my database. When I try to, it tells me I need ALTER TRACE permissions.
BOL doesn't spell it out, but it implies that you...
August 16, 2006 at 12:04 pm
I have a friend who worked for a Microsoft support team back in the '90s. One day a customer called up, complaining that Windows wasn't starting. "Ma'am, did you delete...
July 14, 2006 at 9:47 am
Try exporting your table to Excel. It has some nice functions that allow splitting out data.
Example: Cell A1 has "Seattle, WA 98155"
To get city: =LEFT(A1,SEARCH(",",A1)-1)
2-letter State: =MID(A1,SEARCH(",",A1)+2,2)
5-digit zip code: =RIGHT(A1,5)
You may need...
June 7, 2006 at 11:33 am
Viewing 6 posts - 1 through 6 (of 6 total)