Viewing 15 posts - 16 through 30 (of 36 total)
Thanks Steve. I was thinking that a call to PSS would be in order too.
We run Enterprise Edition.
Ben
April 10, 2004 at 6:24 am
No. It's not clustered. Normal install. Default SQL Server instance.
Thanks,
Ben
April 9, 2004 at 9:49 am
Thanks for the reply Brian. I have been inclined to think the same thing. MS would likely frown on a server-wide trace huh? Probably not a "best...
December 19, 2003 at 8:29 am
Thanks for your replies. This helps a lot!
September 9, 2003 at 10:09 am
Here's the function that I have to do the conversion:
CREATE FUNCTION dbo.fnHexToInt (@Hex varchar(8))
RETURNS int
-- Ver. 1.0.0 28.Oct.2001, Ofer Bester
AS BEGIN
DECLARE @i ...
July 24, 2003 at 10:09 am
Guarddata,
It didn't work for me. I thought it did, but then I realized that it returned the wrong value.
Timingskey
July 24, 2003 at 7:37 am
Thank you so much! Converting to varbinary and then to int worked.
July 22, 2003 at 8:51 am
I wish it was that easy. I'm getting an error when I that says I can't convert varchar to int.
The app developer that I am working with...
July 22, 2003 at 8:27 am
Thanks Frank. This helps. Th eonly other thing is that I'm trying to do this without putting anything in a variable.
The original query returns many rows....
July 22, 2003 at 7:58 am
DrBuckingham,
Please tel me if this is what you had in mind. I tried the following:
set nocount on
declare @cpu_busy int
declare @IO_BUSY int
declare @IDLE int
declare @percent decimal
set @cpu_busy = (select @@CPU_BUSY)
set...
May 16, 2003 at 10:17 am
Thank you very much for your replies. I will try your suggestions.
May 16, 2003 at 4:03 am
Thanks very much for your responses! I'll give it a try Allen. I'm assuming that following your steps won't bother SQL Server.
March 17, 2003 at 9:00 am
Viewing 15 posts - 16 through 30 (of 36 total)