Viewing 15 posts - 451 through 465 (of 2,840 total)
The only limit that I know of is the record limit for SQL 2000. That is 8060 bytes. You have three nchar(1000). That comes to only 6000 bytes and you...
August 10, 2011 at 8:52 am
Is it possible to test it by renaming the column to reason2 and try adding it?
August 9, 2011 at 2:38 pm
Now I am beat. Sorry. Dont have any clue why it should throw that error. Maybe someone else can help you. As far as I know, REASON is not keyword.
August 9, 2011 at 2:30 pm
You can alter the stored proc used for replicating the inserts to suit your needs. The SP will be in your subscriber DB (TestDb). The stored proc will have the...
August 9, 2011 at 2:09 pm
Can you try running this query?
select
name
from
sys.columns
where
object_id = object_id('Tablename')
August 9, 2011 at 1:40 pm
This happens only in this publication? Do you have a user defined data type in this table? I do not think it is the column name that is the problem...
August 9, 2011 at 12:46 pm
Make sure that you have UDP port 1434 open for the SSMS or SQL 2000 tool to connect. Also when using SQL 2000 tool to connect to SQL 2008, it...
August 9, 2011 at 11:25 am
I did what I can. I hope it helps.
August 9, 2011 at 8:10 am
pwalter, Please keep in mind that SQL Server is too vast to have knowledge in all areas. For instance, I am not a T-SQL guru. I have more than 10...
August 9, 2011 at 8:08 am
Ninja's_RGR'us (8/9/2011)
This guy needs help NOW (might be suicidal). I just don't know how to reply to that one...
Really good Job. You handled him quite well. And the last...
August 9, 2011 at 7:44 am
It would be a mistake from their part if they gave MVP award just to people who runs a UG. For example, I run a UG just like Gail said,...
August 9, 2011 at 7:32 am
Restoring mode comes up when you have log shipping. Not for transactional replication.
Yes, you are correct, the developers should not delete records on their test server (Subscriber). Also keep...
August 8, 2011 at 11:33 am
If it need to be pretty fresh, then your option is transactional replication. But there is a drawback when you want to use it.
You cannot allow your developers to...
August 8, 2011 at 10:45 am
Viewing 15 posts - 451 through 465 (of 2,840 total)