Viewing 15 posts - 826 through 840 (of 1,081 total)
Thanx Mohan, I know, BUT - I need that list generated to be importable as a registered server list.
I dont want to build a manual registered server list.
April 29, 2010 at 11:57 pm
Are you using SQL authentication?
then enable the password policy for that account,(but remove the tick from "user must change password..... and password expiration....")
and also see if its locked under status.
April 29, 2010 at 11:43 pm
Nice to know! one more question: is your sa account enabled and what is the password? 😛
April 29, 2010 at 11:05 pm
No matter what the answers, testing on production servers is never a good idea.
April 29, 2010 at 11:03 pm
If you can drop down the DB's, Tables etc, its obviously online.
Some times remote servers take a while to display the color status.
April 29, 2010 at 2:32 am
Noted, and thank you for the feedback.
SELECTt.name as [DB Name],
t.user_access_desc as [Access State],
t.state_desc as [Online/Offline],
((SELECT (CASE t.is_in_standby WHEN 0 THEN 'No' WHEN 1 THEN 'Yes' ELSE 'Other' END))) as...
April 22, 2010 at 9:35 am
try it like this on both:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SELECT LEN('TEST')
April 22, 2010 at 9:32 am
Have a look at these:
http://www.microsoft.com/sqlserver/2008/en/us/spatial-data.aspx
and
http://blogs.technet.com/andrew/archive/2007/11/26/sql-server-2008-spatial-data-types.aspx
April 22, 2010 at 9:30 am
Port 90 as you used is fine.
It's a port specific to the website hosted on IIS, and is only used to point and identify the different websites running on...
April 22, 2010 at 9:14 am
Yes, and no.
run this to rename the server name:
sp_dropserver 'old_name'
go
sp_addserver 'new_name', 'local'
go
April 22, 2010 at 9:08 am
April 22, 2010 at 3:25 am
Viewing 15 posts - 826 through 840 (of 1,081 total)