Since you've starting with the MSSQL connection support Ive tried to start using it.
It is working, but in my case every time connect to the database I receive the following error message:
"SQL Error(208): El nombre de objecto 'sys.sysprocesses' no es valido.
(In english... the object name 'sys.sysprocesses' is not valid)
Eventhough that it let me in and run my queries, but Im not able to see the tables, and views.
Thanks in advance
Ariel
MSSQL Error
Just to ensure, it is a SQL Server 2000 SP4, but i manage it with the SQL 2005 Management Studio
In this SQL2000 Server the table is called dbo.sysprocesses but it should have a spid and kpid (windows thread).
MSDN Reference on sys.sysprocesses:
http://msdn.microsoft.com/de-de/library/ms179881(v=SQL.90).aspx
In this SQL2000 Server the table is called dbo.sysprocesses but it should have a spid and kpid (windows thread).
MSDN Reference on sys.sysprocesses:
http://msdn.microsoft.com/de-de/library/ms179881(v=SQL.90).aspx
Code modification/commit
cbd8474
from ansgar.becker,
14 years ago,
revision 6.0.0.3888
Fetch uptime on MS SQL backward compatible. See http://www.heidisql.com/forum.php?t=8147
in my "ms sql 2000" have one line for DB
you can use so
SELECT distinct CATALOG_NAME
FROM INFORMATION_SCHEMA.SCHEMATA
ORDER BY CATALOG_NAME
some detail:
http://databases.aspfaq.com/schema-tutorials/schema-how-do-i-list-the-databases-on-my-server.html
W:-}
you can use so
SELECT distinct CATALOG_NAME
FROM INFORMATION_SCHEMA.SCHEMATA
ORDER BY CATALOG_NAME
some detail:
http://databases.aspfaq.com/schema-tutorials/schema-how-do-i-list-the-databases-on-my-server.html
W:-}
Please login to leave a reply, or register at first.