Viewing 15 posts - 226 through 240 (of 566 total)
The WMI provider objects are wrapped by SMO. Perhaps an issue w/ the installation of SSMS? What build are you running? Take a look at http://blogs.msdn.com/echarran/archive/2006/01/03/509061.aspx
February 25, 2008 at 1:34 pm
Have you looked at Idera's SQLSafe freeware editon?
February 25, 2008 at 1:22 pm
Are you getting the access denied error message when attempting to create the alias? i.e.
February 25, 2008 at 1:18 pm
Can you telnet to the server? i.e. Start -> Run -> Cmd -> telnet MYSERVERNAME 1433
February 25, 2008 at 12:38 pm
Are you just trying to connect to a remote instance of SQL server on a different port? If so, create an alias for the server in the SQL Server configuration...
February 25, 2008 at 12:17 pm
SQL Server considers the number of sockets, regardless of the number of cores on the processor. In your case, standard will see all 8 logical processors and you only have...
February 25, 2008 at 11:40 am
SQL server licensing is per socket - i.e. 2 sockets, 2 cores you only have to license the 2 sockets. SQL server will make use of all (4) logical CPU(s)....
February 25, 2008 at 11:07 am
Have you looked at the schema changes history report available in SSMS? (right-click the server and/or database, select reports, schema changes history report).
February 25, 2008 at 9:56 am
CLR is another viable option. Check out David Ziffer's article -
http://www.sqlservercentral.com/articles/SS2K5+-+CLR+Integration/creatingagenericaudittriggerwithsql2005clr/2502/%5B/url%5D
February 25, 2008 at 9:42 am
From the horse's mouth 😀
http://www.microsoft.com/sql/2008/prodinfo/newfeatures.mspx
Don Schlichting also wrote a few good articles on some of the new features available in 2008.
http://www.databasejournal.com/features/mssql/article.php/3691821
http://www.databasejournal.com/features/mssql/article.php/3697056
http://www.databasejournal.com/features/mssql/article.php/3702381
February 25, 2008 at 7:28 am
Andy, on the server in question - can you post the results of the following query -
select * from sys.endpoints
February 22, 2008 at 9:59 am
Hi Andy, what version of SQL Server are you running? Express has remote connections disabled by default. This can be enabled in the surface area configuration tool. Can you telnet...
February 22, 2008 at 8:11 am
NP - Just a side note, if you happen to have access to a copy of Host Integration Server you can install this OLE DB provider as well irregardless of...
February 21, 2008 at 1:50 pm
Have you tried the Microsoft OLEDB Provider for DB2 available in the feature pack as opposed to IBM's client access driver?
February 21, 2008 at 9:16 am
It is - just reference the linked server name. i.e.
create synonym for SchemaName.ObjectName for OracleLinkedServerName..OracleSchemaName.OracleObjectName
February 21, 2008 at 8:28 am
Viewing 15 posts - 226 through 240 (of 566 total)