Search Results

1
vote

How do I get a list of tables affected by a set of stored procedures?

I'd do it this way in SQL 2005 (uncomment the "AND" line if you only want it for a particular proc): SELECT [Proc] = SCHEMA_NAME(p.schema_id) + '.' + p.name, [Table] = SCHE …
2
votes

.NET Table Adapters: Get vs. Fill?

A particular gotcha of Fill, if the table already contains data is that you could get unique index exceptions when, for example, the query returns a row whose primary key is already in the table. …