1
vote
2answers
511 views
SQL Server 2005 - Table Functions in a Select statement
I have a table called PurchaseOrderDetail.
TABLE PurchaseOrderDetail
PurchaseOrderDetail int,
Comments nvarchar(500)
In the Comments field of each item I have a …
0
votes
get list of available servers in SQL server group
In C# I've used calls to odbc32.dll
for example:
[DllImport("odbc32.dll", CharSet = CharSet.Ansi)]
private static extern short SQLBrowseConnect(
IntPtr hconn, StringBuilder …
