Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
264 views

How to write an ODBC DataSet object into a database table using C#?

I am unit/auto-testing a large application which uses MSFT Sql Server, Oracle as well as Sybase as its back end. Maybe there are better ways to interface with a db, but ODBC library is what I have to ...
0
votes
1answer
439 views

How to enumerate system restore points using WinAPI (not WMI)?

Must work for WinXp - Vista - Windows 7
-2
votes
1answer
96 views

Convert Stored Procedure to Simple T-Sql

I am new to SQL Server and currently learning it. I got following stored procedure which I don't understand. -- declare a new TABLE variable DECLARE @Products TABLE (RowNumber INT, ProductID INT, ...