Forum Replies Created

Viewing 15 posts - 2,626 through 2,640 (of 2,900 total)

  • RE: Where can u find why a job failed??

    For more detail, create an output file for each step in the job.

    Open the job -> Steps -> Edit -> Advanced

    Then go down to "Output file" and specify a file...

  • RE: Remove Article from Publication

    I'm not sure of your question ....  Are you trying to find them in Enterprise Manager ?  I only have pull subscriptions, and they are on the subscribing server. In...

  • RE: Remove Article from Publication

    Easy

    Right click the publication and generate sql script to delete the publication. Paste the portion of the script that has "exec sp_drop article"  for the article(s) you want to remove...

  • RE: "parameterized filters" and "join filters" on the same table?

    I have some Transaction Replications in which I select from TableA with a filter to select only those that are also in TableB:

    SELECT <published_columns> FROM <<TableA>> WHERE 

    Acct#  in (select Acct#...

  • RE: How to avoid the LOCKS in DB

    Are users able to query the database ?  When we first switched to SQL Server, power users were able to run Query Analyzer selects against huge production tables that caused...

  • RE: DTS - problem with owner

    What I do is open EM using "Run As". This allows you to run an instance of EM as a different Windows account without logging off your machine or closing...

  • RE: DTS - problem with owner

    I think so

  • RE: Creating IDs like AAA0000001

    Do you really need 'AAA' and all those zeros ??   Why not just use an auto incrementing field ?

  • RE: Truncate of the Database needed?

    " ... Is it possible to script the database and still keep the lookup-tables-data? ..."

    You're talking about 3 different things, and I think getting them a bit mixed up.  Scripting,...

  • RE: DTS - problem with owner

    I think you'll have to log on to your machine as the other user.

  • RE: oops.... i deleted a table

    I would say "You SHOULD restore to a temporary database and then copy the table from there to the current database."

    Then you're not impacting users or any other data in the...

  • RE: Truncate of the Database needed?

    It sounds as if you want to delete all the test data in the tables, and start fresh with empty tables ??      If it's small, you can type:

    truncate table <tablename>

    for each...

  • RE: DTS - problem with owner

    Same situation here. sp_reassign_dtspackageowner  and other workarounds aren't "sticky".  You can change the owner of a package, but next time it gets saved, it reverts back to the original...

  • RE: alias login to dbo user

    Once I've used sp_addalias, is there a way after the fact to see what has been aliased ?

    I can run:

    SELECT  * FROM  sysusers

    where  isaliased ='1'

    To show me which logins...

  • RE: Using sp_addalias

    Once I've used sp_addalias, is there a way after the fact to see what has been aliased ?

Viewing 15 posts - 2,626 through 2,640 (of 2,900 total)