Viewing 15 posts - 91 through 105 (of 253 total)
You could do INSERT/UPDATE/DELETE on subscriber but then your data could be out of sync with your publisher. There is a bi-directional replication in SQL 2005. Its called Peer-Peer Replication....
September 11, 2006 at 10:08 am
http://www.replicationanswers.com is a good resource. I havent yet seen any step-by-step guide anywhere. I did a brief to-the-point write up an article on setting up Trans-Rep from a...
September 6, 2006 at 5:07 pm
Your @commandstring seems to be getting truncated. Increase the size to 4-5000 and do a PRINT @commandstring to see how its getting built.
August 29, 2006 at 11:34 am
you could do an
INSERT INTO table1( col1, col2, col3)
SELECT col1, col2, col3
FROM table2
August 29, 2006 at 11:31 am
AFAIK, you cannot do this with functions. Here;s an arcicle from MS with a workaround : http://support.microsoft.com/default.aspx?scid=kb;en-us;Q319138
August 28, 2006 at 5:42 pm
25k rows is not much. You shouldnt have to delete indexes and re-create for that count. You could however disable triggers and see if it helps.
August 28, 2006 at 5:40 pm
when you configure distribution on the node it will add the distribution_admin user for you.
August 24, 2006 at 5:27 pm
make sure there is enough diskspace in that folder as it can get filled up prety quickly sometimes, especially when you reinitialize or add a new article etc.
also, the...
August 24, 2006 at 10:46 am
yes it would but it would take a very long time to feed all the data through the app and let it encrypt and put the data in the table....
August 23, 2006 at 8:01 pm
If you use dynamic sql you would not be able to use table variables. You need to use either temp tables or physical tables. there are tons of articles about...
August 23, 2006 at 5:10 pm
Check out BOL for different views under INFORMATION_SCHEMA.
August 23, 2006 at 3:38 pm
You could create an index on the name column too. And if it still doesnt help you can force SQL to use the index on the name.
The following example shows...
August 23, 2006 at 3:35 pm
Create a domain account that is also a local admin on the server and use that account.
August 23, 2006 at 3:28 pm
There is a creationdate in sysobjects. am not sure if you can find the "modified date".
August 23, 2006 at 3:24 pm
You might need to use dynamic SQL and use EXEC() to execute the sql.
August 23, 2006 at 3:23 pm
Viewing 15 posts - 91 through 105 (of 253 total)