Forum Replies Created

Viewing 15 posts - 1,486 through 1,500 (of 1,790 total)

  • RE: Exporting to CSV

    A global variable would be the way to go. Specify the initial file name as your destination connection then prior to Transformation Task in the package insert a dynamic properties...

  • RE: Log files location change

    Detach the databases, move the physical files to the location that you desire and then attach the databases with the proper path specified. See sp_detach_db and sp_attach_db in Books On...

  • RE: Constraint Violations on tables w default value

    Well, I thought that this was a problem associated with the upgrade however, the problem is actually with the type of connection string used by the code that worked fine...

  • RE: Tape Backups

    Your backup software will not back them up while the service is running. You will need to stop the service prior to taking a backup.

    Best solution in my opinion...

  • RE: Restore both *.bak and *.trn

    I am assuming that "But, I can apply the *.trn files." should have read "can't apply the *.trn files"? If that is what you meant to type, then my question...

  • RE: Code table spreadsheet output

    Sorry, missed the additional insert....

    Try this;

    select

    b.Value

    , d.Value

    from

    (select distinct(a.value) from Test a where a.Code = 'a') b

    ...

  • RE: Code table spreadsheet output

    Not sure if Sybase will handle correlated sub-queries but if it will, try the following;

    select

    distinct(Value) as AValue

    , (

    select distinct(value)

    from Test b

    where

    Code = 'b'

    and b.Value = a.Value

    ) as BValue

    from...

  • RE: Importing from a comma delimited text file

    -Create a temp table that matches your text file structure

    -Import the data in from the text file into the temp table

    -Delete from the main table where the records exist in...

  • RE: Log Shipping

    In your given example the database knows that it was backed up at 9:15 and if you were to restore that backup using the no recovery option followed by a...

  • RE: Retail App: Will SQL Server work?

    Take a look at http://www.microsoft.com/sql/techinfo/deployment/70/msde.asp

    Hope this helps get you started.

    David

  • RE: Upgrade Option Not Available

    Figured it out. I am at a new company and my old tools are gone including installation CD's. Install that was provided to me was a Developer Edition Install which...

  • RE: Upgrade Option Not Available

    It gives me hope that it can be worked around. Thanks Andy!

    David

  • RE: User Permissions

    There are a couple of stored procedures you can look into to get the information you are looking for. My favorites are sp_helprotect, sp_helpuser, sp_helplogins.

    You can also look up...

  • RE: DTS pkg works manuelly but fails when scheduled

    It appears that the SQL Server Agent does not have permissions to gain access of the Excel file where you do. When you run the package manually you are passing...

  • RE: Change Domain A/C password of SQL Server Services

    Yes as the service actually has the password typed into it. You will need to change the password and then restart the service.

    The thing I am not sure about...

Viewing 15 posts - 1,486 through 1,500 (of 1,790 total)