Forum Replies Created

Viewing 6 posts - 16 through 21 (of 21 total)

  • RE: The Complete SQL Server 2005 Permissions Report

    If you copy the script from the web page into a SQL query it contains non-printing characters that Transact-SQL does not like. If you copy the script into notepad...

  • RE: Slack SQL Server

    Add a lightning-fast way to encrypt and decrypt data. Even following Microsoft's suggestions to combine symmetric and asymmetric functions, performance isn't there. And what about indexing on encrypted...

  • RE: Looking Forward

    Here's a late New Year's Resolution that doesn't sound at first like it's career improvement, but it truly is...

    My resolution is to remember to give back and thank those who...

  • RE: ETL Process taking a while to execute

    The truncate solution seems best, but if you really get stuck having to delete millions of rows, one technique that has worked for me is setting a rowcount of something...

  • RE: Detect Table Fragmentation in SQL Server 2005

    You might want to add the page_count when you check for fragmentation so you don't spend time rebuilding indexes on small tables that don't fill more than one page.

    --These indexes...

  • RE: Foreign keys good or bad practice?

    I've inherited a system in which all the foreign keys are disabled and triggers are being used to enforce referential integrity. The nice part about this setup is that...

Viewing 6 posts - 16 through 21 (of 21 total)