Viewing 15 posts - 16 through 30 (of 89 total)
Yup...I see this error message: "Length specified in network packet payload did not match number of bytes read; the connection has been closed. " which can correspond to something messing...
December 15, 2011 at 9:14 am
It is a SQL Server 2008 Enterprise SP2 server.
November 30, 2011 at 12:00 pm
jared-709193 (10/3/2011)
October 3, 2011 at 2:29 pm
Lowell (10/3/2011)
SELECT
id,
SUBSTRING(CONVERT(VARCHAR(max), Data),
CHARINDEX('<t2>', CONVERT(VARCHAR(max), Data)) + 4,
( CHARINDEX('</t2>', CONVERT(VARCHAR(max), Data))...
October 3, 2011 at 2:21 pm
jared-709193 (10/3/2011)
DBAgal (10/3/2011)
MyDoggieJessie (10/3/2011)
October 3, 2011 at 2:17 pm
MyDoggieJessie (10/3/2011)
Either...
October 3, 2011 at 12:18 pm
MyDoggieJessie (10/3/2011)
October 3, 2011 at 11:55 am
MyDoggieJessie (10/3/2011)
Please post an example string and usage...
SELECT id,
SUBSTRING(Data, CHARINDEX('<t2>', Data)+4, (CHARINDEX('</t2>', Data)- CHARINDEX('<t2>', Data))-4)
FROM Tablename
String Example:
sdfjksdhfksdhkfhsdkfhksdhfksdhfksdhf<t2>net.rim.blackberry</t2><t3>1</t3><t4>sadfsfsdfdsf</t4><t5>asdasdasdsa</t5><t6>7.0.0</t6><t7>asdasdasdsa</t7><t8>asdasdasdas</t8><t9>asdasdasd;</t9></R>
Should return: net.rim.blackberry
Instead getting, "Invalid length...
October 3, 2011 at 11:21 am
JeremyE (9/28/2011)
September 29, 2011 at 7:24 am
JeremyE (9/28/2011)
Yuri55 (9/28/2011)
Sorry, but frankly I confused with your recommendation "Keep the witness in the same site as your principal database"
(and certainly I know that per BOL MS "We strongly...
September 29, 2011 at 7:04 am
JeremyE (9/28/2011)
September 28, 2011 at 2:15 pm
iPolvo (9/18/2011)
what exactly do you need the "non asp.net developers" to do?
I need them to check to see if some files are available before the rest of the package runs....
September 19, 2011 at 7:14 am
sturner (9/9/2011)
September 9, 2011 at 7:59 am
OP - I've noticed the same thing recently. Honestly, I think some of the more knowledgeable DBAs just stay away for the SQL Server 2008 General forum, because questions...
August 31, 2011 at 9:43 am
"2.The principal server writes the transaction to the database and, concurrently, sends the log record to the mirror server. The principal server waits for an acknowledgement from the mirror server...
August 17, 2011 at 8:33 am
Viewing 15 posts - 16 through 30 (of 89 total)