Search Results

1
vote

MSSQL: Disable triggers for one INSERT

Can you check for SUSER_SNAME() and only run when in context of the administration frontend? …
1
vote

SQL query: Delete all records from the table except latest N?

If your id is incremental then use something like delete from table where id < (select max(id) from table)-N …
1
vote

String to time format but how?

In SQL you could use something like convert(varchar(8),dateadd(second,45,nextrundate),114) convert(varchar(8),dateadd(minute,45,nextrundate),114) convert(varchar(8),dateadd(hour,4,nextrunda …
1
vote

Need Simple Select Query

I'm guessing you are after any rows that appear more than once with the same TR and TK? If so, then 'HAVING' is probably what you are after SELECT DISTINCT TR,TK FROM TBLSR …
-1
votes

Combining ASP.net SQL 2005 Change Scripts

I think SQL packager from Red gate does this (and a lot more) http://www.red-gate.com/products/SQL%5FPacka …
0
votes

How to Script Automatically, the securables assigned to a SQL account

As with anything SQL server when using SQL Server Management Studio if you aren't sure how to do a specific thing (i.e. looked in Books online but can't quite figure it out), using the 'Script Acti …