Viewing 15 posts - 1,576 through 1,590 (of 2,051 total)
Does the servicepack of the client tools matches the one of the sql server?
February 22, 2006 at 10:45 am
Welcome back.
Try the sample at http://support.microsoft.com/kb/q194792/.
Apparently there must be a recordset in order to capture the returncode.
February 22, 2006 at 10:35 am
Since it is a windows 2000 standard edition, programs cannot allocate more than 2 gb.
February 22, 2006 at 1:25 am
To see how much ram sql server consumes, use the performance counters sql server provides.
The /3gb is missing.
What edition of windows 2000 server is it? Standard, advanced ...
February 21, 2006 at 12:44 pm
Is this only the first time or every time the query is run?
February 21, 2006 at 12:29 pm
Oops, forgot to specify the field where the values should go into.
INSERT INTO #tmpFeatured (ListingID) -- (Line 3)
SELECT ListingID from tblListings_Residential_Featured ORDER BY NewID()
February 21, 2006 at 12:25 pm
select [name],sum(datediff(n,logout,login)) /*total amount of minutes*/
from mytable
group by [name]
order by [name]
You can format the amount of minutes in your report or with a userdefined function.
February 21, 2006 at 11:14 am
That is a huge difference. Could it be the amount of data returned?
Query analyzer displays the results faster in grid than in text mode.
What is the connection technology to sql server...
February 21, 2006 at 11:03 am
assuming listingid is the primary key
Step 1:
Create a temporary table with an idenity field (listingid, autoid)
INSERT into mytemptable
SELECT ListingID
from (SELECT ListingID from mytable order by newid)
Step 2:
update mytable
set displayorder=autoid
from mytable...
February 21, 2006 at 10:51 am
I wasn't aware of that one.
Good you've found it.
February 19, 2006 at 6:32 am
*Is it possible that a bad query to cause this behaviour
I can't say for sure. There is an issue with superfast I/O where a query can monopolize I/O access...
February 18, 2006 at 6:41 am
Got puzzled again.
Do you wish to capture 1/0 (the exit code)
or the number of failed attempts?
February 17, 2006 at 12:38 pm
Instead of reading a file byte per byte (1 I/O per byte) , a program can read them in chunks of y bytes (1 I/O command for y bytes in total)
The same...
February 17, 2006 at 12:35 pm
Simply because there is no recordset in sp_IsValidLogon, just a return code.
You want to capture the exit code?
February 17, 2006 at 10:55 am
Viewing 15 posts - 1,576 through 1,590 (of 2,051 total)