Jorge Godoy <[EMAIL PROTECTED]> writes: > I have to replicate some data from a MS SQL Server to a PostgreSQL server and > the person who's managing the MS SQL Server doesn't understand anything about > it (he's one of the owners of the company) and was given just a username and > password for the connection. > > I need to find out the database name to connect to it... Any hints on how I > can do that? Preferably using something remotely... I have access to the > host's 1433/TCP port plus username and password, as I said...
Hi! Just to thank you and to let you know how I solved the problem. Using freeTDS (http://www.freetds.org) I could use tsql to connect to the server and from there I could list databases (sp_databases; go) and tables (sp_tables; go --- after a use database; go). Thanks and again sorry for the off topic. Be seeing you, -- Jorge Godoy <[EMAIL PROTECTED]> ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ sqlobject-discuss mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/sqlobject-discuss
