Tag: Error
SQL Server Errors out with 80071736 “The cluster Resource ‘Sql Server’ cannot be brought online” Problem
by DotCom on Jan.22, 2009, under Engineers Corner
We have been working on a remote distributor Highly available SQL 2008 / Windows Server 2008 installation. We have come across many issues in doing this. Microsoft claims they are geocluster capable. FALSE**** The truth of the matter is that many geographically distributed datacenters in many cases due to security and the such also have there own VLAN’s or Subnets. The old solution to clustering across datacenters was to create a VLAN that spanned the two datacenters.  With Geoclustering this was supposed to be solved.
Â
Well after working with Microsoft teams and getting to the guys in the SQL development group. There geocluster solution requires that each server have a NIC with the IP address of each Subnet the cluster will live in.  Guess what? That means you still have to stretch the VLAN/Subnet across datacenter opening possible security issues. Geocluster my butt. Even there developers have been arguing its not truely geoclustering.  They say that in future versions this would probably be taken care of.  Anyways now to the new errors we had installing the solution.
Â
When installing SQL on the primary cluster node, toward the end of the install it will attempt to bring the cluster online. If it doesn’t and errors out with the code above, you may want to check to make sure you have the NIC IP physically set, instead of using DHCP. We got this error because it was set to DHCP and we are not running an environment that DHCP is supported in, so theres no servers to dish out IP’s.
Another Error we ran into was when we “Add a SQL Node” on the secondary nodes was “INVALID SKU” error. You must retrieve the Cumulative Update #1 for sql 2008 to fix this issue.  They say it will be in the first service pack for 2008 but as of right now you must request it from Microsoft.Â
Â
I will try to keep people up to date on our implementation and issues we see as we progress through this. I am also curious to hear from others what there experience is in the 2008/2008 installs.
SQL Error codes…..!
by DotCom on Apr.07, 2008, under Engineers Corner
Recently have noticed it was a little more of a challenge to find the actual error codes you might have to handle in a case of timeouts or connectivity issues.  Normally you can easily get a list of error numbers/messages by viewing the master.dbo.sysmessages table. But what error codes do you get in cases you can’t even communicate properly with the DB itself. Well it is hard to find the answer to these. Which I think is a little wierd since I can see many use cases of where I would want to determine wether its a connection error or processing error in order to know how to proceed on indexed data. Anyway the list I could come up with is as follows, not sure how accurate it is since there is very little information around it.
-3: ZeroBytes
-2: Timeout
-1: Unknown
1: InsufficientMemory
2: AccessDenied
3: ConnectionBusy
4: ConnectionBroken
5: ConnectionLimit
6: ServerNotFound
7: NetworkNotFound
8: InsufficientResources
9: NetworkBusy
10: NetworkAccessDenied
11: GeneralError
12: IncorrectMode
13: NameNotFound
14: InvalidConnection
15: ReadWriteError
16: TooManyHandles
17: ServerError
18: SSLError
19: EncryptionError
20: EncryptionNotSupported