Viewing 15 posts - 1,216 through 1,230 (of 1,957 total)
opc.three (9/27/2011)
September 27, 2011 at 8:43 am
There are two problems I can see...
Firstly, the XPATH is not quite right, and secondly, the namespace is not required.
If you could provide sample data in an easily consumed format...
September 27, 2011 at 5:49 am
opc.three (9/26/2011)
September 27, 2011 at 5:12 am
Thanks for the info.
My understanding is that you only get forwarding entries if an update changes the size of the row such that it won't fit in the existing physical...
September 25, 2011 at 8:53 am
The issue here is the conversion. Try the sample below to see a working version.
You need to explicitly grab the correct number of bytes from the context_info() result before converting...
September 25, 2011 at 8:49 am
Hi,
I also have to work with a third part OLTP that uses all heaps (It sounds just like yours - historically coming from C-ISAM), and was just wondering what is...
September 25, 2011 at 8:20 am
angelnjj (9/21/2011)
September 21, 2011 at 5:59 pm
Now that Tom has resurrected this, I had a look and the only answer that is possible is the last as the so-called correct answer will not provide 100GB of...
September 17, 2011 at 6:40 pm
Here is one way to tackle the problem - not yet including the weekend aspect....
IF OBJECT_ID('tempdb..#tagged') IS NOT NULL
DROP TABLE #tagged
IF OBJECT_ID('tempdb..#tagged') IS NOT NULL
DROP TABLE #counted
;WITH MySampleData (TheDate,TheValue)
AS
(
SELECT CONVERT(DATETIME,'20100101'),'-1'...
September 15, 2011 at 4:53 pm
GilaMonster (9/10/2011)
No matter how many open transactions there are, a ROLLBACK TRANSACTION always rolls back to the outermost transaction. If...
September 10, 2011 at 2:57 am
GilaMonster (9/9/2011)
... A rollback always rolls everything back no matter what.
I can't believe I am questioning you Gail, but doesn't that statement need an exception clause for saved transactions?
For...
September 9, 2011 at 6:20 pm
SELECT CONVERT(datetime,@YourDateAsString,103)
the 103 tells it to use the format DD/MM/YYYY
September 9, 2011 at 5:53 am
Depending on what you are trying to do, you can make use of SHIFT I think.
Something like
SET filename=$1
SHIFT
SET something=$1
SHIFT
SET somethingelse=$1
Each time you use SHIFT it drops $1 and shifts all...
September 9, 2011 at 5:52 am
jdeere (9/8/2011)
MMBingo..thanks a bunch as that did it.
You are most welcome.
Do bear in mind the SET NOCOUNT ON; thing when writing SPs to be called from .NET as well -...
September 8, 2011 at 5:17 pm
I haven't had to do this before, but here are some bits I knocked up to try and help...
First, grab a copy of md5sum.exe from the Unix Utils project :...
September 8, 2011 at 5:14 pm
Viewing 15 posts - 1,216 through 1,230 (of 1,957 total)