How to control SQL Server 2008 Express without SQL Server Management Studio (ssms) - ssms

I Installed SQL Server 2008 Express on a client PC (I install SQL Server 2008 Express from Visual Studio Setup Version for C# program)
But I don't see SQL Server Management Studio icon in all programs windows.
Now if I want control tables and database in SQL Servers, how can I do this?

Just installing Sql Express on it's own will not give you any client tools.
If you have a full Sql Server (Dev or otherwise) already installed on the same client, the existing tools will allow you to manage the Express database instance too. Otherwise, you wil need to install the version of Sql Express that comes with tools. This can be found here
Sql Express with tools

Related

Updating version of SQL Server 2008 Management Studio

I am currently running SQL Server 2008 Management Studio (version 10.0.1600.22) and I want to update due to a bug in this version.
All the documentation I have found so far has been for updating to SQL Server 2008 R2 Management Studio and SQL Server 2008 Management Studio Express which I believe are different. Is that right?
I have also found links for updating SQL Server which I once again believe isn't what I'm looking for as I only want to update the client side.
Is there a way (or link) where I can update SQL Server 2008 Management Studio without having to reinstall it?
I believe the management tools for SQL Server 2008 R2 is backwards compatible with SQL Server 2008.
If you want to keep your database instance SQL Server 2008, just run the setup on the installation DVD and choose Maintenance -> Repair. At the screen to select the instance, there is an option to select "Repair shared features only". I don't have SQL Server 2008 DVD, only 2008 R2 DVD, but I believe the 2008 version works the same way.
Or if your computer doesn't have SQL Server database instance, you can do a fresh installation and choose only management tools. Example screen shots (for 2008 R2): http://it-n-careerz.blogspot.com/2013/04/how-to-install-sql-server-management.html
Good luck!

No Management Studio seen after SQL Server 2008 Express installation

I have recently successfully completed the installation of SQL Server 2008 Express.
After installation when I tried accessing SQL Server Express I found there was no Management Studio installed.
Is there an issue with express, that Management Studio is not installed during installation?
If yes how do we access SQL Server in this case?
I also tried installing Management Studio separately but however when I tried to login through the installed Management Studio the server was not found.
Am I missing something?
Does SQL Server Express not come with Management Studio?
Please Assist.
Thanks
sql server 2008 express does not have management studio. There is a Management Studio Express, but, IIRC, it must be downloaded separately.
The SQL Server 2008 Management Studio Express can be downloaded from here. You'll need it to use a management studio with Express edition.

Is there a way to add Business Intelligence Projects templates to Visual Studio 2008?

From what I understand, it should automatically have it installed. What I have installed right now is SQL Server 2008 R2 and Visual Studio 2008 Developer.
Thanks,
Fahad
If you installed the SQL Server 2008 R2 client tools, you will see the Business Intelligence project templates in Visual Studio 2008.
So, make sure that you installed SQL Server 2008 R2 client tools and not just the Express edition.
Check the following link to understand which SQL Server editions support Business Intelligence Development Studio (BIDS).
Features Supported by the Editions of SQL Server 2008 R2 - Development Tools
Follow this link to find the steps to install SQL Server client tools.
SQL Server 2008 Client Tools Installation
Update:
If you have the SQL Server 2008 R2 Client tools installed, you should see a folder in the Windows Start --> All Programs option. Within that you should see SQL Server Business Intelligence Development Studio. If you don't, then you don't have the client tools installed.
You can also open Visual Studio 2008 and navigate to Help --> About Microsoft Visual Studio and look for the following components to be installed.
SQL Server Analysis Services
SQL Server Reporting Services
SQL Server Integration Services
you need to install SSIS, SSAS and SSRS (which come with SQL Server 2008 installation, you just have to pick the option).
Once you install any them you will have access to BIDS (Business Intelligence Development Studio), which is visual studio with the BI templates

SQL Server Express 2008 database compatibility with SQL Server Express 2005

a) I am in the process of developing a web site using the new free web development tool - Webmatrix (Beta 2) from Microsoft.
b) Web Platform Installer (recommends and also) automatically installs SQL Server Express 2008 along with Webmatrix and VWDE 2010 Express.
c) My database is created in SQL Server Express 2008. But the hosting company says that they would support only SQL Server Express 2005 (but not SQL Server Express 2008).
d) Can I go ahead with this hosting company or should I look for somebody who supports SQL Server Express 2008 specifically? In other words, the crux of the issue is:
Is it possible to open, read, update the database and tables created using SQL Server Express 2008 in SQL Server Express 2005 edition also?
Esh
I had the similar issue with hosting company.
They gave me a bak file from SQL server 2008 and I tried to restored in in my SQL 2005 environment and it consistently failed. Quite surprised to see the lack of backward compatibility. I would advise to go with hosting provider who supports 2008 or you migrate your DB to 2005.
In one word: NO.
SQL Server is never backwards compatible - if you have a database in a 2008 version, there is no way to restore and use that on a SQL Server 2005 machine. There's no trick, no third-party tool, no hack, nothing - it just doesn't work. EVER.
So if your hoster supports only SQL Server 2005 Express, you need to uninstall 2008 Express and manually install 2005 Express on your dev machine.
Or find a hoster that support SQL Server 2008 Express.

How to integrate SQL Server 2005 Express Edition to Visual Web Developer 2008 Express Edition

I use Visual Web Developer Express Edition 2008 and SQL Server 2008 Express edition. I have finished a project recently. But many of hosting firms don't have SQL Server 2008. So i decided to uninstall SQL Server 2008 and install SQL Server 2005. Then I would reproduce my database. I uninstalled SQL Server 2008, installed SQL Server 2005. In project, When i clicked "App_Data - Add new item - SQL Server Database", an error accured "Connections to SQL server files (*.mdf) require SQL Server 2005 to function properly. Please verify the installation of the component or download from the URL: http://go.microsoft.com/fwlink/?linkId=49251". I couldn't add a new database to my project.
So how do i integrate SQL Server 2005 Express Edition to Visual Web Developer 2008 Express Edition?
Check the setting under Tools > Options > Database Tools > Data Connections for the SQL Server Instance Name refers to the name of your SQL Express 2005 instance.
Check SQL Server Express is running using the SQL Server Configuration Manager.