February 10, 2010 at 12:00 pm
I have a instance and it was named servername
But now, I am able to register this SQL Server instance only by this name
servername-be,1433
I don't know how this became like this with be extension.
When I run this command select @@servername, I get servername as servername only without the BE extension
Please share your inputs
M&M
February 10, 2010 at 12:04 pm
February 10, 2010 at 12:23 pm
Is there any way to check when this change happened.
In my knowledge, I never changed it.
M&M
February 10, 2010 at 12:27 pm
Check the windows events logs and SQL server logs.
February 10, 2010 at 12:36 pm
Make sure both results are same when you run these statements, assuming default instance name.
select @@SERVERNAME
go
select serverproperty ('ComputerNamePhysicalNetBIOS')
EnjoY!
February 10, 2010 at 1:00 pm
When I run this select serverproperty ('ComputerNamePhysicalNetBIOS')
it returns NULL.
Is this because the server I am referring to is SQL Server 2000.
M&M
February 10, 2010 at 1:14 pm
Try this!
select serverproperty ('MachineName')
February 10, 2010 at 1:19 pm
I am getting same servername when I run below commands
select @@servername
select serverproperty ('MachineName')
But I am only able to register/connect with this name servername-BE,1433 and not
servername,1433
M&M
February 10, 2010 at 1:47 pm
One more point.
The IP addresses of servername and servername-BE are different.
I am able to ping both these server names.
But I am only able to register\connect to servername-BE
M&M
February 10, 2010 at 1:56 pm
Viewing 10 posts - 1 through 9 (of 9 total)
You must be logged in to reply to this topic. Login to reply