Viewing 6 posts - 1 through 6 (of 6 total)
Thanks for your help folks.
Unfortunately there are many possible values for @mycolumnname.
I eventually came up with two more workable, though inefficient, solutions:
1. Write the value of @mycolumnname to a ##temptable...
November 24, 2003 at 2:39 am
If you're looking for reasons why not to put SQL and IIS on the same box....
http://www.sqlservercentral.com/columnists/dpoole/sqlandiisonthesamebox.asp
September 10, 2003 at 3:35 am
SELECT TOP 3 ProductID, ProductName
FROM products
ORDER BY NEWID()
Tends to return
17 Alice Mutton
3 Aniseed Syrup
40 Boston Crab Meat
About 50% of the time!
I suspect this is due...
June 26, 2003 at 4:02 am
Most of our server names are 15 characters. Never had a problem either.
June 25, 2003 at 2:24 am
To grant 'view diagrams' permissions to a role or login , grant execute permissions on
dt_getobjwithprop_u
dt_getpropertiesbyid_u
This will allow viewing of the diagrams only with no update ability.
June 11, 2003 at 6:43 am
Viewing 6 posts - 1 through 6 (of 6 total)