Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    MS SQL Server


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





How Can I Run A Function In Sql Server Management Studio?


how can i run a function in  Sql server Management Studio?

Regards

Karen




View Complete Forum Thread with Replies

Related Forum Messages:
Function That Works In Sql Server Management Studio Does Not Work In Derived Column Transformation Editor
Hi

I'm a relative SQL Server newbee and have developed a function that converts mm/dd/yyyy to yyy/mm/dd for use as in a DT_DBDATE format for insert into a column with smalldatatime.

 

I receive the following erros when using the function in the Derived Column Transformation Editor.  First, the function, then the error when using it as the expression Derived Column Transformation Editor.

 

Can anyone explain how I can do this transformation work in this context or suggest a way either do the transformation easier or avoid it altogerher?

 

Thanks for the look see...

******************************

ALTER FUNCTION [dbo].[convdate]

(

@indate nvarchar(10)

)

RETURNS nvarchar(10)

AS

BEGIN

-- Declare the return variable here

DECLARE @outdate nvarchar(10)

set @outdate =

substring(@indate,patindex('%[1,2][0-9][0-9][0-9]%',@indate),4)+'/'+

substring(@indate,patindex('%[-,1][0-9][/]%',@indate),2)+'/'+

substring(@indate,patindex('%[2,3][0,1,8,9][/]%',@indate),2)

 

RETURN @outdate

END

********************************

 

And the error...

 

expression "lipper.dbo.convdate(eomdate)" failed.  The token "." at line number "1", character number "11" was not recognized. The expression cannot be parsed because it contains invalid elements at the location specified.

Error at Data Flow Task [Derived Column [111]]: Cannot parse the expression "lipper.dbo.convdate(eomdate)". The expression was not valid, or there is an out-of-memory error.

Error at Data Flow Task [Derived Column [111]]: The expression "lipper.dbo.convdate(eomdate)" on "input column "eomdate" (165)" is not valid.

Error at Data Flow Task [Derived Column [111]]: Failed to set property "Expression" on "input column "eomdate" (165)".

 (Microsoft Visual Studio)

===================================

Exception from HRESULT: 0xC0204006 (Microsoft.SqlServer.DTSPipelineWrap)

------------------------------
Program Location:

   at Microsoft.SqlServer.Dts.Pipeline.Wrapper.CManagedComponentWrapperClass.SetInputColumnProperty(Int32 lInputID, Int32 lInputColumnID, String PropertyName, Object vValue)
   at Microsoft.DataTransformationServices.Design.DtsDerivedColumnComponentUI.SaveColumns(ColumnInfo[] colNames, String[] inputColumnNames, String[] expressions, String[] dataTypes, String[] lengths, String[] precisions, String[] scales, String[] codePages)
   at Microsoft.DataTransformationServices.Design.DtsDerivedColumnFrameForm.SaveAll()

 

View Replies !
Visual Studio Database File And SQL Server Management Studio Express Question
I have a database in my "App_Data" folder of my visual studio project.  I can view it fine in Visual Studio's built-in tools for managing a database attached to a solution.  However i recently started playing around with the SQL Server Management Studio Express program.  When i attach my database to Management Studio, and try to run my program it crashes.  I think it might be a permissions error?!? When i detatch it and reattach it in visual studio it runs fine again.   Any suggestions? ThanksJason 

View Replies !
SQL Server Management Express Studio Management Tools
 

I have recently installed the SQL Server Management Studio Express but I do not find Management Tools in order to create scheduled backups and shrinking of the databases. I was under the impression that this should be included in the Management Studio. I use the SQL 2005 Express for smaller customers who run the SQL on a desktop unit. I need a way to backup the data to a server machine for backup purposes. I have uninstalled and reinstalled to no avail.

View Replies !
Visual Studio 2005 Standard And SQL Server Management Studio?
I am new to visual studio and I am still not sure of all its components and features.

I installed visual studio 2005 standard edition but cannot find SQL Server Management Studio?

I guess this must be because it is not included with Visual studio 2005 standard. Is it included with VS 2005 professional?

I want to add pictures of products to my shopping site using an SQL database and I’ve been told that SQL Server Management studio is required as it is a graphical tool.

How would I go about obtaining the SQL server management studio. There seems to be different versions of SQL server that it is confusing to know which one to purchase.

Will the SQL server 2005 version that comes with Visual studio standard be sufficient for me now right? I want to create a shopping site with hundreds, perhaps even thousands of products. I want to use an SQL server 2005 database. The database will include ‘dynamically generated’ product images if that is the correct terminology.

My goodness, it seems I still have so much to learn.

Thanks

View Replies !
How Do I Get The Database That I Am Using In Visual Studio Into My SQL Server Management Studio?
How do i get the database that i am using in visual studio into my SQL server management studio?
i need to create some scripts to create stored procedures on a live server.

View Replies !
Server Express, Management Studio Express, Visual Studio Standard, And An ASP.NET Page....
I believe I'm missing something as far as my configuration goes...I'm new to working with SQL server and the databinding I'm trying to do.

I have an ASP.NET page that has a radio button list box which I have databound to a database served up by SQL Express

I'm having a lot of problems with connections...

I was going to enumerate the behavior under each configuration (local only, remote tcp/ip only, remote pipes only, remote both), but I've realized that it is just flaky.  Sometimes I can connect to the db with SQL Studio express, sometimes not.  Sometimes I can add new tables and edit tables, sometimes not.  Sometimes I can create a new connection when trying to databind from within Visual Studio, and sometimes not (sometimes I can't even connect, other times, I can connect initially but when I build a query through the designer it then has problems).  Lastly, sometimes the ASP.NET page works correctly and sometimes not.

This all seems to be mostly independent of how I configure SQL Server as far as what kinds of connections are allowed.  I thought there was a pattern, but as I tested it more rigorously I found there wasn't.

What I would like to do is be connected to the same DB with Visual Studio and SQL Studio, edit the DB as I wish, databind to it, and test my ASP.NET page, all without needing to jump through a bunch of hoops (although right now I wouldn't even know what those hoops are...it's just a shot in the dark as to what will work).

It's all quite maddening and any help would be appreciated. 

View Replies !
About SQL Server Management Studio Help!!!
i have SQL Server 2005 dev edition and i wanted to use SQL Server Management Studio so is it installed or i need to install the SQL Server Management Studio  express edition ???
thx

View Replies !
SQL Server Management Studio
Hey everyone,
     Would someone please tell me why the new SQL Server Managment Studio comes with hardly not frills?  What happened to the SQL Enterprise Manager in SQL Server 2000? It had DTS, SQL Agent Job and step viewing, Cool Wizards.. All that great stuff. but with this new Sql Server Management Studio with 2005 all I can do is pretty much look at the data and write queries and create and modify tables. Am I missing something?
I did download an external tool which was called an import/export wizard but it sucks compaired to the DTS in SQL 2000.
I did notice when I open my Sql Server Management Studio "Express" that it is the Express version... Is there a difference?
Thanks for any help.

View Replies !
SQL Server Management Studio
I have SQL server 2005 developer edition installed on my machine.  I was expecting something like Enterprise manager to manage databases but nothing is installed by default.  Ive found SQL server management studio express and installed it, but Ive also seen references to SQL Server Management Studio.  Are there any differences between the two , or are they the same and are just described differently ??  Im a bit confused, Microsoft should make this clear.

View Replies !
SQL Server Management Studio
I have installed SQL Server Management Studio (for SQL2005) to a pc. When the user boots the pc, the following error is received:

fmaagent.exe - Common Language Runtime Debugging Services
Application has generated an exception that could not be handled.
Process id =0x328 (808), Thread id=0x32c (812).

Click Ok to terminate the application.
Click CANCEL to debug the application.

After clicking on OK, the pc continues on its merry way and boots up successfully.

Does anyone know what would cause this error? I have checked the Microsoft site but did not find this error listed among the documents.

The PC is running Windows XP.

Thanks in advance.

View Replies !
Sql Server Management Studio
In 2005 Query Analyzer no longer exists and the query is integrated with management studio.  I have some users that want to query the database but I don' t want these users to have the ability to use anything else in the Management Studio - restore databases, detach, etc.    Anyone have any ideas how this might be done? Thanks.

View Replies !
I Need SQL Server Management Studio!
Hi,

I have just completely installed MS SQL Server 2005 Express Edition in MS Server 2003.
After installation, I only have the Configuration Manager, Error and Usage Reporting and Surface Area Configuration, listed under Configuration Details.

SQL Server Management Studio is not accessible anywhere.
I also do not have the folder C:Program FilesMicrosoft SQL Server90ToolsBinnVSShell in which the SQL Server Management Studio is installed.
What must I do to get this component installed?

In this article http://msdn2.microsoft.com/en-us/library/ms143219.aspx, it is also written in step 8 that there should be a "Components to Install" page. I have done the installations and uninstallations a few times, but I still do not have "Components to Install" page. In fact, after step 7, I am brought to the "Features Selection" page.

What can I do to solve this problem? Please help.

Thanks.

View Replies !
SQL Server Management Studio
During SQL 2005 Standard edition the Management Studio did not install. how can I get it to install?

 

View Replies !
SQL Server Management Studio
I've install SQL Server 2005 Enterprise Evaluation Edition but the Management Studio was not installed.  Is this normal?  If yes how can I get the Management Studio

 

Thks

View Replies !
Where Is SQL Server Management Studio
I just had to do a total restore on one of my machines that has a copy of SQL Server 2005.  Luckily, this is not the production server.  But when I reinstalled SQL Server, I now do not have the option to get into SQL Server Management Studio.  Why would this be?

 

Everything seemed to install okay - including Reporting Services.

 

Thanks for the information.

View Replies !
Where Is SQL Server Management Studio?
I have the "Ready to Launch" package, which includes Vidual Studio 2005 Standard Edition, SQL Server 2005 Standard Edition and something else called BizTalk Server 2006.

Anyway, Visual Studio is spread across two CD's and I have installed that. I now want to use the SQL Server Management Studio to administer a database I have running on a website. Anyway, SQL Server is on a DVD and when I put it into the drive it comes up with the autorun screen. I noticed that in the top left corner of this screen it says "SQL Server 2005 (Disc 1 of 2). However, there is no second disc, so I'm wondering if this is a problem or just a typo left over from the CD version.

There is two options in the menu under Install, "Server Components, tools, Books Online, and samples" and "Run the SQL Native Client Installation Wizard." I have tried both of these options and I still don't have the SQL Server Management Studio. In fact if I select the first option, when I get half way through the wizard, it asks what components I want installed. I cannot see any reference to the SQL Server Management Studio in this list, so I just select everything to be sure.

Once it has finsihed installing, all it does is create a Start Menu folder called "Microsoft SQL Server 2005" and another folder inside that called "Configuration Tools." This folder just contains a few things like configuration manager and surface area configuration, etc...

So where do I find this SQL Server Management Studio? Have I done something wrong or am I missing something (like a second disc)? I'm installing on to Windows XP, would that cause the problem? Do I need to be installing on to some sort of server OS (which I don't have BTW as I'm just a regular user looking for a way to administer my MS SQL database and I heard this tool was the way to go)?

View Replies !
SQL Server Management Studio
When attempting to start the SQL Server 2005 Management Studio from the Start Menu on my Windows 2003 SP1 server, I quickly get the error, "The Application failed to initialize properly (0x80000003). click on OK to erminate the application. I am accessing the server from my Windows XP Workstion using Timbuktu Pro Remote control software. I have no problem attaching to the SQL Server database on this server when connecting to it from my Workstation install of Management Studio. The SQL Server Business Intelligence Studio launches fine in the Timbuktu session as does SQL Server Configuration Manager. The Configuration manager shows all services (for both my Default and Named Instance) in the Running state.

Please help.

Rob

View Replies !
Using SQL Server Management Studio
Hi everyone,

 

I am trying to connect to my reporting server, but in Management Studio

 my server type only shows 'Database Engine'.  I have SQL Server Reporting Services running and I can connect to the report manager.

 

I would like to define a new role in Management Studio, how can I do this?

 

Also, in my report manager site, I do have the link to add roles.

View Replies !
Where Do I Buy SQL Server Management Studio?
I have the Express version but now need the full tool set. I've been looking for the last half hour on Microsoft.com and elsewhere, and can find absolutely anything I could want to know about the program except how to purchase it. I feel kind of stupid, but I have to ask: where the hell do you buy this thing?? :-)

Thanks.

Jeff

View Replies !
SQL Server Management Studio
This is probably a noob question, but is it possible to install SQL Server Management Studio on a remote machine (i.e. my laptop)?

View Replies !
SQL Server Management Studio
Can I set a passport protection to a database (once I am connected to the SQL Server on my own machine) from not opening/browsing/stop even read access?

(I want something like log in authentication before I open/browse/double click on any database to expand basically)

Thanks for help
J.

View Replies !
SQL Server Management Studio
David writes "I am kind of new to SQL Server Management Studio.
How do I export tables and stored procedures from a database on my PC to a database by the same name located on a remote server."

View Replies !
Where Is SQL Server Management Studio?
I installed SQL 2005 in a few server but none of them have SQL Server Management Studio.
Where to find out them?
I checked c:...inn, there is now VSShell folder.

View Replies !
SQL Server Management Studio
Good Afternoon! I installed SQL Server Express 2005 but the GUI is not visible. Someone can tell me how to install it or where I can find the executable.

Thanks.

View Replies !
Management Studion Express Alongside Full-blown Management Studio?
Is it possible to run both Sql Server Management Studio: Express and full blown side by side?

I am developing with the full blown product but would like to test Management Studio Express on the same box.
Is this possible?

Thanks

Eric

View Replies !
Microsoft SQL Server Management Studio
I was looking for Microsoft SQL Server Management Studio but downladed Microsoft SQL Server Management Studio EXPRESS.
the express version doesn't have the SQL server agent. I read that the express doesnt support SQL server agent. Is there any add-on or service pack available for this.
I am trying to find "SQL server Management studio". Any idea where I can download it?

View Replies !
Microsoft SQL Server Management Studio
i try to open database table using Microsoft SQL Server Management Studio i got the follwing error msg i don't know what the problem
 
===================================
Object reference not set to an instance of an object. (SQLEditors)
------------------------------Program Location:
   at Microsoft.SqlServer.Management.UI.VSIntegration.Editors.OpenTableNode.CreateDesigner(IDTDocToolFactoryProvider factoryProvider, IVsDataConnection dataConnection)   at Microsoft.SqlServer.Management.UI.VSIntegration.Editors.VsDataDesignerNode.CreateDesigner()   at Microsoft.SqlServer.Management.UI.VSIntegration.Editors.VsDataDesignerNode.Open()   at Microsoft.SqlServer.Management.UI.VSIntegration.Editors.VirtualProject.Microsoft.SqlServer.Management.UI.VSIntegration.Editors.ISqlVirtualProject.CreateDesigner(Urn origUrn, DocumentType editorType, DocumentOptions aeOptions, IManagedConnection con)   at Microsoft.SqlServer.Management.UI.VSIntegration.Editors.ISqlVirtualProject.CreateDesigner(Urn origUrn, DocumentType editorType, DocumentOptions aeOptions, IManagedConnection con)   at Microsoft.SqlServer.Management.UI.VSIntegration.Editors.VsDocumentMenuItem.CreateDesignerWindow(IManagedConnection mc, DocumentOptions options)
 

View Replies !
SQL Server Management Studio Express
Hello,
 I have downloaded sql server 2005 express on the test server and the sql server management studio express.  So everytime I want to check my database or make a chance I have to go to my web server and open stuido express.  Can I download studio express and connect to my database on my webserver from my computer??
 Rich

View Replies !
MS SQL Server Management Studio Express
hi there !
  Well i hope u all great people are having great time. Well i am new to asp.net and struggling in database deployment to server. I took webhosting from datapacket.net, and using helm control panel. to deploy database, i used sql management studio express as suggested by some one. Now i am not able to access any of database or tables, although i got connected when i altered configuration surface setting to allow server to go to remote server. Now please help me, how to deploy database ?
 
Thanks

View Replies !
SQL Server Management Studio Express
What is the difference between "SQL Server Management Studio Express" and "SQL Server Management Studio"?  I have a copy of SQL Server 2005 but i did not find on it a copy of "SQL Server Management Studio", so i downloaded the express version.  Is there a difference?  If so where can i get the full version? Jay 

View Replies !
Sql Server Management Studio Express
I am trying to attach a sql database that resides here C:Documents and SettingsJerry DeanMy DocumentsVisual Studio 2005WebSitesclub_sahc, however SSMSE will not let me browse to this location. If I copy the databse and place in here C:Data_sql, I can make a bak file that I can upload and restore to SQL Server 2005.
 How do I get SSMSE to let me browse to the location above?
 
Thank you.

View Replies !
SQL Server Management Studio Question
Prior to 2005 I was able to right click on a table and either "SELECT TOP" or "QUERY" and then it would open an editable table results. in 2005 it only has OPEN TABLE. If the table has a million records it proceedes to open all million records. Is there a way to do the old "SELECT TOP" or "QUERY" in 2005 like the onld version 2000. The "NEW QUERY" option only returs an uneditable result set.
This was convienient when I just wanted to make a quick update to a table.
I have found that if I use OPEN TABLE a small table, Right click on the results and select PANE,SQL I get what I am looking for however then I have to change the select to get the results. Very Tedious.
Also when I do a SELECT * in this view it changes the * to all of the column names. I then have to delete all of these and change it back to an * when I select another table. another tedious process.
Any advice would be helpful.. Just trying to adapt to the new Database/interface
Thanks in advance.

View Replies !
Locked Out Of Sql Server Management Studio
Hi everyone, I hope someone can help me here! A friend of mine set up a Windows 2003 Server for me in my home with Sql Server 2005. I'm developing a website for prospective employers to see the kinds of things I can program since I have no field-related work experience. I have a cool site up, but I can't showcase the any features that use sql server (which obviously, are the kinds of things employers want to see) because the login and password my friend remembers produces this error:Cannot connect to server. Additional information:An error has occurred while establishing a connection to the server. When connecting to sql server 2005, this failure may be caused by the fact that under the default settings sql server doesn't allow remote connections,(provider: Named Pipes Provider, error: 40-could not open a connection to sql server)(Microsoft sql server, Error:2)My friend doesn't know how to fix this. Is there a way to create another login with admin rights in the command prompt so that I can login & get my database functionality going? Thanks in advance,Monster

View Replies !
Server Management Studio Express
I just installed Server Management Studio Express, but there is an error when I run the application. This is the message:

"Unhandled exception has occurred in a component in your application.
If you click Continue, the application will ignore this error and
attempt to continue.

Cannot create a stable subkey under a volatile parent key."


And there is also an error when I try to open a file from my local
machine. The error occurs when I click File > Open > File...
The error cause the application has to close. See this link below:
SQL Error.

Many many thanks for the help in advanced!

View Replies !
Can't Find SQL Server Management Studio
I can't find the SQL Server Management Studio anywhere. I've installed SQL server 2005 developer edition and choosed every component from the list but it isn't in the start->program->SQL server 2005 menu, there's only a couple of configuration managers.Where can I find it, or am I missing something?

View Replies !
Trying To Run SQL Server Management Studio Express CTP
I need a tool to let me manage some SQL Express DBs. I've downloaded and installed the subject tool twice. It installs fine but when I run it, nothing happens. Is there something special required.
All I want is the equivalent of Enterprise Manager for SQL Express.

View Replies !
SQL Server Management Studio Express?
Ive succesfully installed the final versions of VWD Express and SQL Server Express and SQL Server Management Studio Express CTP. Everyhting is working fine except the SQL Server Management Studio Express, when i click on it in the start menu nothing happens at all, ive tried uninstalling, repairing etc but it still never starts up when its clicked on. Any ideas please??

View Replies !
How Do You Install SQL Server Management Studio For Sql 2k5 ?
I have looked and looked all over the web and on the SQL 2k5 standerd DVD and have yet to find it.

Can someone please point me in the right direction.

View Replies !
SQL Server 2005 Management Studio
Hi,

I have created two instaces on the Database Engine and have managed to also create a linkedserver between the two instances.

Now I'm trying to query two tables from both instances and I'm getting a collation conflict error. I tried to change this on the Database's propertry to match the other one, but still getting an error, see below:-

===============
Database could not be exclusively locked to perform operation. ALTER DATABASE FAILED. The default collation of database"XXXX" cannot be set to ....(Microsoft SQl Server, Error : 5030)
===============

Please help!

Javu

View Replies !
SQL Server Management Studio Express
Hi;

I have searched for a good tutorial for SQL Server Management Studio Express bu I cannot find the information I want. I don't know how to set a MS SQL server accesible from LAN or internet and how to set it's password etc...

Thanks for your help

View Replies !
SQL Server Management Studio Folder
When I open SQL Server Management Studio 2005, it graciously creates a folder called "SQL Server Management Studio" in the My Documents folder. But I don't want this folder in My Documents, so I moved it to a folder within My Documents. The next time I opened the app, a new "SQL Server Management Studio" folder appeared in My Documents. This makes good sense. But I wondering if there's a way to have Mgmt Studio recognize that I've moved these config folders somewhere else? (I didn't see anything in Tools > Options or in any other menu's for that matter.)

View Replies !
About SQL Server 2005 Management Studio
i would like to ask if there is a way to FILTER THE IPADDRESSES of users who wants to login the SQL Server Management Studio. right now, we are using Enterprise Edition of SQL Server 2005.
 
i just want to limit the users who can log in at Management Studio, the users know the password of SA, and i can't change the password coz we have deployed the programs with odbc connection using SA. so i thought of filtering the ipaddress of computers i want to grant access to SQL Server Management Studio, if its possible.
 
need a help.
 
thanks
 
 
 

View Replies !
Uninstalling MS Sql Server Management Studio
Hi there, I've been having a problem of being unable to connect to my DBs when I open them up in Sql Management Studio Express. First I thought that the DBs were corrupted however, I picked up signs that this may not be the case. There is a chance that it is a problem with the Management Studio. Thus instead of uninstalling SqlExpress I want now to uninstall only the management studio.
 
My problem started after I attempted to connect my Sqlxpress DBs with my VS2008. In the Server Explorer window there is an option to display Sql Express DBs, so I made an attempt. After that when i  tried open the same DBs in the management studio I began getting numerous errors.
 
I ran a thread to resolve it but nothing helpful transpired.
Now, I attempted to uninstall the Management Studio via Start==>Control Panel==>Programs==>Uninstall Programs. Iam running Vista Ultimate. The problem is that when I attempted to uninstall it the system said that I do not have the administrative rights. There is no way to right click on the menu item and confirm the administrative rights.
 
I have two options:
 
(1) To find out the uninstall exec for the Management Studio and run it thru cmd cmd prompt as administrator.
 
(2) To invoke the window GUI for Uninstall programs thru cmd prompt and do the same. For that I need to find the exec or msc file that generates the GUI. I am now going to try to find this out.
In the meantime, if anybody knows the name of the file that uninstalls Sql Management Studio Express, please let me know.
 
Thanks.

View Replies !
Starting MS SQL Server Management Studio
 

When I start the SQL SQL Server Management studio, I always the the a message box with the message , "Configuring the Environment for first time use, this may take a few minutes".
This is only happening on one lap top.
SQL express and Sql standard are installed on the box.
I have uninstall and reinstalled the tools, but the problem persist.
 
How can I suppress this mesage box?

View Replies !
SQL Server Management Studio Problem
Hi,

i got a problem for which a question has already been raised but closed without solution (or working solution).

 

When i launch SQL Server Management Studio i receive 2 times a "Package ' Microsoft SQL Server Management Studio Package' failed to load.

i've already resinstalled SQLTools90 but without any impact or event reapply sp2.

 

Someone has an idea ?

View Replies !
Server Name In Management Studio Is Blank
 

Hi All,
Can someone please help me on below:
I just installed SQL server 2005 at home, my compute name is not blank but when I open SQL Management Studion Server Name Column is blank I don't know how to fix it now?
 

Thanks in advance.
AA

View Replies !
SQL Server Management Studio Not Installed
I recently installed a complete version of SQL Server 2005 on a PC running VISTA. Everything installed as expected except for "SQL Server Managment Studio" which is not to be found anywhere.

 

I also had previously installed SQL Server 2005 Express and  "SQL Server Managment Studio Express". The "Express" versions are still installed.

 

Uninstalling from VISTA and installing on a much slower and much less capable Windows XP PC was successful. Uninstalling from the XP PC and reinstalling on the VISTA platform resulted in the same unsatisfactory results.

 

How do I get "SQL Server Managment Studio" to work with VISTA?

View Replies !
Deploy SQL Server Management Studio
Hello,

I need to deploy Server Management Studio by Active directory and I will like to know where I can find the MSI do it. (I didn't find it on the CD)

Thank you for your help

View Replies !
Missing SQL Server Management Studio
Hi,

I am a novice at SQl Server, so apologise in advance if you think this is a really stupid question.

I have a windows XP laptop with Visual Studio 2005. I installed SQl Server 2005 Developer Edition but do not see the SQl Server Management Studio anywhere. The only thing in Programs/ SQL Server 2005 is SQL Server Configuration Manager. I then uninstalled it & installed SQL Server Express but encountered the same issue.

I would like to install the Developer Edition if possible. I have tried uninstalling & reinstalling a few times but it does not work.

Could someone please help in resolving this. Appreciate it!

View Replies !
Can't Find The Server Management Studio
hey,

i did the installation, everything went well.

when i want to start the server management studio it isn't in the program files listed.

is there something i can do about it. i did the installation three times now and it didn't change a thing.

all comments are welcome

greetz

TjAnNe

View Replies !

Copyright © 2005-08 www.BigResource.com, All rights reserved