in

ASP.NET Weblogs

Tolga Koseoglu

April 2009 - Posts

  • SSIS package fails when Package Configuration is enabled using XML

    I thought I share this with you, before you waste time like I did.

    If you are planning to deploy an SSIS with "Package Configurations" enabled using XML file, and if one of the dynamic properties is the "ConnectionString", you MUST add the "Password=xxx" yourself into the string. The Wizard won't store it.

    Good luck

     

    --tolga

  • "Full text index" optioni is grayed on database table

    Here are the steps to enable this

    1. Make sure the SQL Server FTS is running
      1. Click Start, Programs, Microsfot SQL Server 2005, Configuration Tools, SQL Server Configuration Manager
      2. Select SQL Server 2005 Services
      3. Find "SQL Server FulltextSearch"
      4. Enable/Start the service
    2. Go back to SSMS (Management Studio) and open a query window. Execute the following query...
                                    
    use [database name]

    exec sp_fulltext_database 'enable'

     

    Good luck...

More Posts