Viewing 15 posts - 2,626 through 2,640 (of 2,897 total)
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#...
November 2, 2005 at 3:09 pm
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...
October 27, 2005 at 2:33 pm
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...
October 27, 2005 at 2:01 pm
Do you really need 'AAA' and all those zeros ?? Why not just use an auto incrementing field ?
October 27, 2005 at 10:11 am
" ... 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,...
October 27, 2005 at 8:24 am
I think you'll have to log on to your machine as the other user.
October 27, 2005 at 7:46 am
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...
October 26, 2005 at 4:25 pm
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...
October 26, 2005 at 4:15 pm
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...
October 26, 2005 at 3:21 pm
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...
October 26, 2005 at 2:37 pm
Once I've used sp_addalias, is there a way after the fact to see what has been aliased ?
October 26, 2005 at 2:32 pm
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"...
October 21, 2005 at 2:35 pm
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...
October 21, 2005 at 1:58 pm
Go to Books Online, and look at the "overview" section of PULL and PUSH subscriptions. There's some good info there.
October 19, 2005 at 3:28 pm
Viewing 15 posts - 2,626 through 2,640 (of 2,897 total)