Forum Replies Created

Viewing 15 posts - 6,631 through 6,645 (of 6,648 total)

  • RE: error in Integrity Check of Maintenance Plan

    There is an option to repair minor errors. If that option is checked - then exclusive access is required to run the integrity check.

    Generally, you do not want the...

  • RE: view maintenance plan status

    A couple of ways to find out:

    Open Activity Monitor, find the process and see what commands are being run.

    Or, install the Performance Dashboard Reports from Microsoft. Run the report...

  • RE: Row size in MS SQL Server 2005

    239 columns? You definitely have a problem with normalization. I would highly recommend normalizing this table.

    The only reason I could see having this many columns (and this is...

  • RE: Backup/Restore Between Servers

    If you cannot afford any downtime, the only option is to backup/restore. Now, since you will be moving your backup files to a network share (make sure you have...

  • RE: install query analyzer only

    Since they only need something to run queries - there are several low cost (and free) utilities available.

    I prefer either Toad from Quest or DbVisualizer, but there is also WinSQL...

  • RE: Compatibility mode

    I have no idea how many apps would run - all I know is that one of my vendors would not support the version we had on SQL Server 2005....

  • RE: Compatibility mode

    This sounds like a vendor supplied application. If so, and the vendor does not support this version on SQL Server 2005 - there are no options for you other...

  • RE: Reading Log Files To Track DB Changes

    Take a look at the SQL Compare and SQL Data Compare tools from Redgate. I hope they are making these changes on a test system first. You can...

  • RE: return value from nested Stored Procedure

    smknox (12/29/2007)


    how can I modify usp_Prognote_Insert to return the value of the PK if a record already exists?

    This doesn't seem to work:

    CREATE PROCEDURE usp_ProgNote_Insert

    @SecondaryKeyValue int

    ,...

  • RE: What do these Maintenance Plans icons mean ?

    They are just icons for the maintenance plan. They have no special meaning.

    The difference can be explained by looking at the version of SQL Server you are connecting to....

  • RE: DataFlow Task

    SQLIS has plenty of examples for all types of transformations. You might want to take a look at the rowcount transformation examples.

  • RE: Select WIthin a Case Statement

    Sure, what you have is:

    ,'TeamMentor' =

    CASE

    WHEN TeamMentorDate IS NOT NULL THEN 'Team Mentor'

    WHEN (SELECT r.AchieveTitle FROM Repromotes r WHERE RepFlag = 'X' AND AchieveTitle = 'Team Mentor) THEN 'Team...

  • RE: Select WIthin a Case Statement

    Yes - you can, but I am not sure you need this. Anyways, for that part - you can use an EXISTS, or check for NOT NULL. Examples:

    CASE

    ...

  • RE: DataFlow Task

    Plenty of options and help at: http://www.sqlis.com

  • RE: How do i Set Password Expiration days for a Sql Login

    SQL Server uses the Windows password policy mechanism. So, whatever is defined on your server (Windows 2003 or higher) is what will be used.

Viewing 15 posts - 6,631 through 6,645 (of 6,648 total)