Viewing 15 posts - 46 through 60 (of 115 total)
You can try one thing first register the publisher in enterprise manager on subscriber then use that name for configuring your subscription
Note: - all this steps & replication configuration should...
June 23, 2006 at 12:58 am
What i think is its something to do with the memory management on the server.
You can monitor the server for memory utilization by ASP & how the pooling is handled...
June 23, 2006 at 12:43 am
Subscriptions are set to expire because in case you configure a replication for temporary purpose after which you forgot the remove the subscription then in this case the publisher will expire...
June 22, 2006 at 9:16 am
Yes, it is possible to replicate between different domains.
The easiest way to set up replication between different domains is to create a local user account on both the servers with...
June 22, 2006 at 9:03 am
You can even check for the application user access to the DB OR Stored Procedure.
June 22, 2006 at 8:53 am
I think 2 things can be done here.
1. access remote db from link server.
2. First dump all the records in #temp table from select & then update the main table...
June 22, 2006 at 8:49 am
Check OSQL user for valid permission on prod.
June 22, 2006 at 8:32 am
Check the account by which your service was running OR try starting it from different account.
June 22, 2006 at 8:30 am
I am not very sure why OS will change the way query is writen in SQL server.
I think you just need to set the "SET QUOTED_IDENTIFIER ON"
for more info...
June 20, 2006 at 12:28 am
It really depend's on your query & the table which you are accessing. if you are selecting data from a huge table then tmp table is the good opction as that will cut...
June 19, 2006 at 2:47 am
varchar[(n)]
Variable-length non-Unicode character data with length of n bytes. n must be a value from 1 through 8,000. Storage size is the actual length in bytes of the data...
June 19, 2006 at 2:08 am
This link might help you.
http://support.microsoft.com/default.aspx?scid=kb;en-us;246133
June 16, 2006 at 9:42 am
Sushila,
Thanks for the link, it was nice to read that.
June 16, 2006 at 9:02 am
IF it's a text column having data less then 4000 char then use this
REPLACE(CAST(<column_name> AS Nvarchar(4000)),char(13),char(10)) AS column_name
Or if its a varchar column then try this.
REPLACE(<column_name>,char(13),char(10)) AS column_name
June 16, 2006 at 8:52 am
Viewing 15 posts - 46 through 60 (of 115 total)