Forum Replies Created

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

  • 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 ?

  • RE: Check Adhoc

    Don's post looked like it might be relevant.  Otherwise, Scott ....  I have the same take on this as you .....    There are a few references in BOL to "ad hoc"...

  • RE: error "database in use" when trying RESTORE or DETTACH my database

    Also, when you detach, through EM, it gives you the option to kill all the connections.  You can use that feature even if you don't really want to detach. Kill...

  • RE: Replication - PULL or PUSH

    Go to Books Online, and look at the "overview" section of PULL and PUSH subscriptions.  There's some good info there.

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