Forum Replies Created

Viewing 15 posts - 106 through 120 (of 166 total)

  • RE: which task is DTSExecuteSQLTask_6 ?

    When trying to troubleshoot DTS problems this is one of the problems you can run into.  To try and find out exactly what DTSStep_DTSExecuteSQLTask_6 is and what it is doing...

  • RE: sp_password problem

    You can change the type back to system from user by using an undocumented procedure called sp_MS_ marksystemobject. Permissions will then default to members of the sysadmin server role, the...

  • RE: Restore SQL7 master to SQL 2K

    Pretty sure you cannot do this.  You cannot even restore a version of the master database to a different service pack of the same version.  Presumably if you are simply upgrading from...

  • RE: Table with no index has too many indexes

    One thing you may want to look at is if there are any hypothetical indexes.  These are created when the database tuning wizard runs and can sometimes end up being left...

  • RE: How to move dts packages

    When I move DTS packages I save them as a Structured Strorage File(.dts).  Then from the other machine that I want to open them on I right click Data Transformation...

  • RE: DBCC SHRINKDATABASE

    When I need to shrink the database I always do it on a file basis first.  This way the data is compacted before the database is shrunk.  The code I...

  • RE: Tidy up data in field, need function ?

    Off the top of my head, this would probably work:

    CONVERT(TEXT,REPLACE(fieldname,'0',''))

    FROM tablename

  • RE: horizontal recordset to vertical recordset

    I am using the SQL Server 2005 CTP and it has some nice new TSQL features like PIVOT and UNPIVOT which take care of this very nicely.  However, I have...

  • RE: User list and permissions list

      I used to use a number of queries against the system tables to derive this information but I found a link on this site to a very nice...

  • RE: How to allow someone to install Query Analyzer without access to install CD?

    When choosing the installation type you can choose advanced and the select the option to create a recorded Unattended Intsall File .iss.  I have not actualy tried this before but...

  • RE: Cannot delete backup file; access is denied

    I have had the same problem recently with one of our servers.  I tried stopping the SQL Services and agent seperatly but that did not fix the problem.  We ended...

  • RE: How to increase time out in EM

    The only time I have ever experienced a lock timeout while browsing surrent activity it ended up being a situation where tempdb had expereiced exxcessive locking.  You may want to...

  • RE: Possible to do an Update/Select Like an Insert/Select?

    Just like this:

    UPDATE tablename

    SET columnname = (SELECT columnname FROM tablename WHERE ?????)

    WHERE ?????

  • RE: How to increase time out in EM

    Not sure if this is what you are looking for but, you can adjust the timeout for Login Time out and Query time out.  You do this by Clicking Microsoft...

  • RE: replace dbo of database

    You can do this by executing the stored procedure sp_changedbowner '?'.  Just replace the ? with the new owner you would like to assign.

Viewing 15 posts - 106 through 120 (of 166 total)