Viewing 5 posts - 1 through 5 (of 5 total)
This is a bug in Windows 2003 SP2. There's a hotfix for this.
http://support.microsoft.com/kb/932370/
After applying this hotfix you can query NumberofCores correctly.
November 13, 2008 at 2:40 am
Did you create a linked server named DEV ? you can do it in 2 ways.
1. using sp_Addlinkedserver procedure ( Look at the books online for detail )
2. from...
April 30, 2008 at 1:38 pm
easiest way is to define the DEV server as a linked server. And using the four name convention
insert into PROD.DB.dbo.tablex
select * from DEV.DB.dbo.tablex
( DEV is the name of the...
April 30, 2008 at 8:24 am
I think finally DBAs will have to build a complete soulution for Archiving. nor Developers neither Analysts work on this problem..And we ( DBAs ) always force them to avoid...
April 24, 2008 at 7:00 am
just avoid using the quotes..
INSERT INTO #temp (member,medicaidID,dateOfService) VALUES ('Doe, Jane ', '012345678901', '5/21/2007 00:00:00')
this should work..
April 21, 2008 at 7:30 am
Viewing 5 posts - 1 through 5 (of 5 total)