Viewing 15 posts - 16 through 30 (of 36 total)
We too have been using xcase.. and have been quite happy with the product (though not as happy with the responsiveness of the vendor)..
Are you able to use it...
December 5, 2006 at 10:17 am
Thanks.. I was hoping that there is something that could be done on the receiving end (the 2005 end).. but I suppose I can always just run a script to...
December 1, 2006 at 6:44 pm
Thanks folks.. I'm begining to find places in the application framework that are leaving connections open... the hunt is on!
August 18, 2006 at 6:00 pm
Thanks.. I may give that a try..
In the meantime, I'm just pulling the xml into a VFP mid tier object and processing it there..works well, though I would prefer to...
August 2, 2005 at 9:56 am
Thanks.. I had hoped for an sql server only solution.. but it all does look extremely cumbersome. It seems such a simple requirement: all it needs is the ability to store...
August 1, 2005 at 11:53 am
Thanks guys..
Looks like Art's code incorporates the various suggestions and the corrections to the setclear..
Seems to work fine up through position 30... which is all I need..
I appreciate...
May 26, 2004 at 11:05 am
Thanks.. that's the direction I finally took also..
May 26, 2004 at 9:40 am
ok.. found the problem, here is a set of working functions:
-----------------
CREATE FUNCTION dbo.BitClear(@nvalue BigInt, @nposition TinyInt)
RETURNS BigInt AS
BEGIN
Declare @nResult Bigint
Declare @nResult2 BigInt
set @nResult = 0
set @nResult =...
May 25, 2004 at 7:01 pm
I'm playing around with your math versions, and I'm not getting quite the result I expected. Did I misinterpret what you had in mind?
-----------
CREATE FUNCTION dbo.BitClear(@nvalue BigInt, @nposition TinyInt)
RETURNS...
May 25, 2004 at 3:51 pm
Thanks..
string manipulation in VFP is blazingly fast.. I'll have to get used to it not being so in the SQL Server context..
and, yup, I do need to get around...
May 25, 2004 at 2:29 pm
Thanks a bunch for turning me on to those functions in master..
Here is what I came up with.. and they seem to work fine. (I'm just getting into SQL Server.. so if I'm...
May 25, 2004 at 1:40 pm
bummer..
I wonder if it would work to create a udf which called an extended stored procedure to emulate the functionality of the IIF()...
But I assume that even if it...
May 25, 2004 at 12:35 pm
Thanks!
Looks like this should get me started...
and what would emulate:
BITCLEAR(nExpression1, nExpression2)
Clears a specified bit (sets it to 0) in a numeric value and returns the resulting value.
May 25, 2004 at 12:13 pm
Thanks.. but what I'm looking for is a general solution which I can implement as a UDF.
I have a large number of Selects, Views, etc. to move from VisualFoxPro over...
May 25, 2004 at 12:07 pm
Viewing 15 posts - 16 through 30 (of 36 total)