How to work with (SQLPlus) in SQL Server 2008? - sql

I just finished the conception of a simple Java project and my client wants to use SQL Server as a Database,
i downloaded SQL Server 2008, i tried to use SQLPlus to execute the queries but i didn't find any tutorial in the internet on how to use SQLPlus in SQL Server.
Can anyone Help me please.

Check out SQLS*Plus - this is SQL*Plus for SQL server. Their web site is http://www.sqlsplus.com/

Related

How to connect toad, SQL developer and SSMS using ODBC?

I need to connect oracle and SQL server databases using ODBC by the following application.
Toad
SQL Developer
SSMS
CMD
Is there a way to connect these applications thru ODBC. If yes could you please help me with this.
I have already created DSN for both oracle and SQL, but other steps are unknown since I don't if I can connect these applications to a database using ODBC
I think you are misunderstanding and mixing things.
Toad is a product of Quest Software, an IDE ( Integrated Development Environment ) based on OCI. The best known version is the one which is designed to interact with Oracle databases..
SQL Developer is also an IDE, though less powerful than Toad, but
free. It is based on Java and it can connect to Oracle, MySQL, Postgres .
SSMS is SQL Server Management Studio , which is the client IDE to interact with Microsoft SQL Server.
CMD is also know as the command prompt for windows which it does't make any sense in this context.
If you want to connect Oracle to SQL Server you have two options:
Oracle HS or Heterogeneus Services
SQL Server Linked Server

how to get database sql via hirens boot?

I have a windows 7 run SQL server (I don't know what is kind of SQL) of my colleague.
My colleague is stopped work.
I don't know password windows, password sql,and sql file,...
I tried crack pass windows using hirent boot but failed, and I can't load partition to remove syskey password.
His machine is sql server.
I can't connection to his machine.
I have a question:
How to get database on his machine without login windows?
Thank all
If the service of SQL server stopped, you can copy database file and copy in other location, and can attach this file to another SQL server database engine. also you can know version of your SQL server by using SQL Server connection management, and also SQL server query (select ##Version ) if you can execute query.

Open WebMatrix SQL Server database in Microsoft SQL Server Management studio

I have a question. I did migrate my SQL CE database to SQL Server database and now i would like to open this SQL Server database in Microsoft SQL Server Management studio. Do you knoq how can I do it?
I need more information to help you, are you having trouble determining the server or the login or what? You need to login as a user with rights on that database. Do you know the server name that it was migrated to?
If you are looking for an easy to use tool to convert between mssqlce and sqlserver try this one: http://sqlcetoolbox.codeplex.com/releases/view/69910

SQL Server Management Studio with SQL Server 2000

How to use SQL Server Management Studio with SQL Server 2000
Download it, install & run it. Works fine with every SQL Server edition.
SSMS 2008 will work with SQL Server 2000. You won't have access to intellisense or SQL 2008 Commands ( hierarchy, geometry, CTEs, etc) but you can run T-SQL, browse the server without issue. Just make sure you're using the correct login method.
By the way, if you need intellisense working in SSMS with SQL Server 2000, you'll need some third-party tools, like our dbForge SQL Complete. The tool has both free and shareware editions.

Download SQL SERVER AGENT - Microsoft SQL Server

I have downloaded SQL SERVER MANAGEMENT STUDIO but SQL SERVER AGENT is not found.
Should I install it separately?
Can anybody tell me the link where SQL SERVER AGENT is available as a Freeware to download it?
The agent is not visible if you use SQL Server Management Studio Express to connect to an SQL Server. You need to install the client tools that come with the server setup to get SQL Server Management Studio.
If you are using SQL Server Express, it has no agent.
SQL Server Agent is a service of SQL Server, not SQL Server Management Studio (which is, in and of itself, an administration tool).
Since SQL Server Agent is part of SQL Server, it's not free. You can learn about creating a job in SQL Server Agent here.
What, pray tell, are you actually trying to do?
You (or your company) will need to purchase the full version of SQL server in order to use this functionality.
The other option is to find the command-line instruction that will achieve what you want and then use Windows Task Scheduler to run the command on the schedule you want.