Viewing 15 posts - 16,681 through 16,695 (of 26,489 total)
No. I need that when I rdp into the server and run ssms there as well as for any processes that run local to the server.
March 6, 2010 at 9:54 am
Shared memory is disabled on the application servers. These are separate systems, so no local connections to the database servers. All connections from the application servers are using TCP.
March 6, 2010 at 9:41 am
We'll see soon enough. We move everything to the new hardware tomorrow and will be live by 5:00 PM.
March 5, 2010 at 2:11 pm
We've disabled TCP Offloading on the SQL Server systems. Now it is a waiting game to see if the intermittent problem still occurs.
March 5, 2010 at 11:54 am
GilaMonster (3/5/2010)
http://support.microsoft.com/kb/324270
On Server 2003 RTM, the setting for SynAttackProtect is 0. With SP1 it was changed to 1.
iirc, that's the one that we had to change back...
March 5, 2010 at 11:39 am
I find using google and the Microsoft Knowledge Base quite the same. It is an art to find what you are looking for quickly.
I'd spend hours looking in the...
March 5, 2010 at 11:08 am
GilaMonster (3/5/2010)
March 5, 2010 at 10:50 am
Data caching. The first time you run the query the data has to be pulled from disk. Subsequent queries for the same data pull from cache.
March 5, 2010 at 10:47 am
I'd be curious as well. Also, is this something that could be done remotely?
March 5, 2010 at 10:36 am
Fatal Exception Error (3/5/2010)
Chad Crawford (3/5/2010)
March 5, 2010 at 10:32 am
Jack,
Thanks. I have forwarded the info you provided to my PeopleSoft Admin and Network Services. We'll see what transpires and I'll keep everyone posted.
As to the second blog,...
March 5, 2010 at 10:11 am
You need to cast 1.8 as a float. See the following:
create table #temp (
column1 float
);
declare @TestVar float;
set @TestVar = 975.81;
insert into #temp select @TestVar;
select column1
...
March 5, 2010 at 9:47 am
Okay denizens, looking for ideas and suggestions here.
Thanks.
March 5, 2010 at 9:42 am
Viewing 15 posts - 16,681 through 16,695 (of 26,489 total)