Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
117 views

How do I check the size of an indexed view in SQL Server?

Its easy to check storage sizes for Tables and Indexes, you can right-click the table object on SSMS explorer and voila, the details appear in a nice popup. But since Indexed Views are displayed the ...
3
votes
1answer
243 views

How to use a system stored procedure in LINQ to SQL

I'd like to add the "msdb.dbo.sp_help_job" system stored procedure to a LINQ to SQL object, but I can't figure out how to specify it. If I create a new Data Connection in Server Explorer and specify ...
3
votes
3answers
630 views

retrieve most recently executed SQL command (T-SQL)

One of my developers working on a trigger-based logging facility in SQL Server 2008 asked me if there was a command to retrieve the most recently executed SQL command within T-SQL. I thought there ...
2
votes
1answer
248 views

T-SQL: sp_MSdependencies Flags parameter

can anybody tell me what are valid values for the flags parameter of the sp_MSdependencies stored procedure and especially what do they mean. Many thanks in advance
1
vote
5answers
524 views

Generate Multiple and Filtered Drop + Create Stored Procedures

I have this script: select name,create_date,modify_date from sys.procedures order by modify_date desc I can see what procedures were modified lately. I will add a "where modify_date >= " And I'd ...