Viewing 15 posts - 46 through 60 (of 65 total)
mike 57299 (1/26/2011)
January 30, 2011 at 4:27 pm
Why do you want to avoid replication? Seems like a push or pull transactional replication is what you are looking for.
January 30, 2011 at 4:21 pm
matt stockham (1/27/2011)
nadabadan (1/27/2011)
DECLARE @v-2 varchar(max)
DECLARE @t varchar(max)
SET @t = 'abcdefghij'
SELECT @v-2 = REPLICATE( @t, 10000 )
SELECT @v-2
If you copy and paste the value...
January 27, 2011 at 7:20 pm
matt stockham (1/27/2011)
nadabadan (1/27/2011)
matt stockham (1/27/2011)
January 27, 2011 at 2:30 pm
matt stockham (1/27/2011)
January 27, 2011 at 2:09 pm
thisisfutile (1/27/2011)
nadabadan (1/27/2011)
...you will get 11 rows instead of the expect 10.
In the article, Jeff stated "I don't really care where the line "wraps", nor do I care about trailing...
January 27, 2011 at 11:30 am
"t.N BETWEEN 1 AND LEN(@LongString)/@length+1" would list an extra blank row where LEN(@LongString) is a multiple of @length.
DECLARE @longString varchar(max)
DECLARE @val varchar(max)
SET @val = 'abcdefgh'
SELECT...
January 27, 2011 at 9:39 am
Could be that the publisher and subscriber table has different table schema. Specifically, subscriber's table probably has a smaller column data type than the publisher's. E.G. : if the Publisher's...
January 21, 2011 at 8:53 pm
I'm betting that you dropped/created the sp in the wrong database, perhaps the master database.
December 9, 2010 at 1:28 pm
Brandie Tarvin (9/29/2010)
September 29, 2010 at 5:49 pm
Lynn Pettis (9/29/2010)
nadabadan (9/28/2010)
CirquedeSQLeil (9/28/2010)
Another option will be to modify the app so that read type connections...
September 29, 2010 at 5:46 pm
CirquedeSQLeil (9/28/2010)
Another option will be to modify the app so that read type connections are the only...
September 28, 2010 at 9:13 pm
I will get more detailed in what I want. We have two identical servers ( A and B ). Server A is live and Server B is the failover server....
September 28, 2010 at 7:21 pm
LutzM (9/27/2010)
CirquedeSQLeil (9/27/2010)
Even with an explicit deny on the table for update, delete, and insert as well as the denydatawriter - the user...
September 27, 2010 at 6:54 pm
Matt Miller (#4) (2/15/2010)
NULL is not a value, so as such, NULL is neither equal nor not equal to any value. Unfortunately, that also means that...
February 18, 2010 at 10:06 am
Viewing 15 posts - 46 through 60 (of 65 total)