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.





SQL Server 2005, SQL Server Mobile, SQL Server Management Studio. Unsupported HTTP Function Call


Hi All,




View Complete Forum Thread with Replies

Related Forum Messages:
Unsupported HTTP Function Call Was Made Error.
 

Hi experts,

I'm new to this forum.  I have been searching around for the solution to the problem that i'm having, and I can solve it.  I'm having the same problem as the title say....unsupported HTTP function call....The thing is that it worked on my development server.  When I transfer all the source to a new pc and execute it, it failed with the error in the subject.  I uninstalled and reinstalled everything.  I ran the http://iissvrname/iisvirtualdir/sscesa20.dll and I get this "SQL Server CE Server Agent" which tell me that IIS & SQL CE are setup correctly.  Here is the error log:

Source: Microsoft SQL Server 2000 windows CE edition
Number: 80004005
NativeError: 28017
Description: An incorrect or unsupported HTTP function call was made.
[,,,,,]
Param = 0
Param = 0
Param = 0
Param =
Param =
Param =

I'm running SQL 7 on the PC and using RDA to pull data from SQL7 db to the PocketPC.

Please help!!!

Thanks!

View Replies !
An Incorrect Or Unsupported HTTP Function Call Was Made Error
Hi All,

I've got this error "An incorrect or unsupported HTTP function call was made"

I can't browse SQL CE Agent using IE also.

How to solve this error? TQ

 

View Replies !
Please Help Me To Resolve The 28017 Error (An Incorrect Or Unsupported HTTP Function Call Was Made), Thanks A Lot.
Now I need to synchonize the data in Pocket PC to the remote sql server database.

I have configured the publication and the virtual directory in the server. When the Pocket PC directly connects to the server (that to say, the Pocket PC connects to the server through the ActiveSync), the data can be synchronized successfully. But when the Pockec PC connects to another computer () through the ActiveSync (this computer connects to the server through the network), the data cannot be synchronized. But when I run the application in the emulator in the same computer, the data can be synchonized with the server.

 

using the following codes, the error message is:

Error Code: 80004005

Message:

Minor Err: 28017

Source: Microsoft SQL Server 2005 Mobile Edtion.

 

private void ShowErrors(SqlCeException ex)
        {
            SqlCeErrorCollection oErrors = ex.Errors;

            StringBuilder oStrBld = new StringBuilder();

            Exception oInner = ex.InnerException;

            foreach (SqlCeError oErr in oErrors)
            {
                oStrBld.Append("Error Code: " + oErr.HResult.ToString("X"));
                oStrBld.Append("Message   : " + oErr.Message);
                oStrBld.Append("Minor Err.: " + oErr.NativeError);
                oStrBld.Append("Source    : " + oErr.Source);

                foreach (int iNumPar in oErr.NumericErrorParameters)
                {
                    if (iNumPar != 0)
                        oStrBld.Append("Num. Par.  : " + iNumPar);
                }
                foreach (String sErrPar in oErr.ErrorParameters)
                {
                    if (sErrPar != String.Empty)
                        oStrBld.Append(" Err. Par.  : " + sErrPar);
                }
                MessageBox.Show(oStrBld.ToString(), "SqlCeException");
                oStrBld.Remove(0, oStrBld.Length);
            }
        }


The environment is:

Client:

Sql mobile (sql ce 3.0)

 

Server:

windows 2003 server

sql server 2000 with sp4

IIS 6

 

And I'm quite sure the virtual directory is correct.

 

Any body can help me? It's urget for me, thanks in advance.

 

 

 

View Replies !
How To Add Data In Sql Mobile Database From Sql Server 2005 Management Studio
 

Hi,

After creating mobile database into sql server 2005 management studio, how to insert the records from sql server 2005 management studio into and mobile database from excel file?

Thank you

Prashant

View Replies !
SQL Server 2005 Management Studio Only Can Connect To 2005 Mobile Edition?
hi,

I have some SQL CE database .sdf file on my handheld, and I was trying to connect to that file via SQL Server 2005 Management Studio, and it does not work. I am wondering if there is any good tool that I can use on desktop to connect to sqlce .sdf database file on my handheld?

Thanks.

View Replies !
SQL Server Management Studio Can Not Connect To SQL Server Mobile
 

My System: SQL Server 2005 Express, Microsoft SQL Server 2005 Compact Edition, Vista 64
 
---
 
Hello@all,
 
my Problem is i can not connect on Server Management Studio with my SQL Server Compact (local).
 
here is the message in German:
 

TITLE: Verbindung mit Server herstellen
------------------------------

Es kann keine Verbindung mit '(local)' hergestellt werden.

------------------------------
ADDITIONAL INFORMATION:

Fehler beim Herstellen einer Verbindung mit dem Server. Beim Herstellen einer Verbindung mit SQL Server 2005 kann dieser Fehler dadurch verursacht werden, dass unter den SQL Server-Standardeinstellungen Remoteverbindungen nicht zulässig sind. (provider: Named Pipes-Provider, error: 40 - Verbindung mit SQL Server konnte nicht geöffnet werden) (Microsoft SQL Server, Error: 2)

For help, click:  http://go.microsoft.com/fwlink?ProdName=...=2&LinkId=20476

------------------------------
BUTTONS:

OK
------------------------------

in the SQL Server Configutation Manage is all Protokoll Aktive, i habe testet with normal user Account and Admin Account... all not work...

Installet Software:
Microsoft SQL Server 2005
Microsoft SQL Server 2005 Compact Edition [DEU]
Microsoft SQL Server 2005 Compact Edition [DEU] Server Tools
Microsoft SQL Server 2005 Compact Edition Developer Software
Microsoft SQL Server Management Studio Express
Microsoft SQL Server Native Client
Microsoft SQL Server VSS Writer

Services running to SQL
SQL Server (SQLEXPRESS)
SQL Server VSS Writer
SQL Server-Browser

what is the problem here? please help me....

View Replies !
Cannot Connect To SQL Report Server Through Web As Well As Management Studio (Http:503 Error Service Unavailable.)
hi all,
i have SQL 2205 with SP1 installed on my machine.
and i m not bale to connect to Report Server using SQL management studio as well as from web.

i have installed reporting server and database on same machine. i tried using

 "http://localhost/reportserver"
"http://localhost/reports"
"http://localhost/reportmanager"

but i am not bale to connect i am getting "Service Unavailable" page.

and when i try to connect using SQL Management Studio with "servername/instance" as well as "http://localhost/reportserver" i am getting a error saying.

===================================
Cannot connect to http://localhost/reportserver.The request failed with HTTP status 503: Service Unavailable. (Microsoft.SqlServer.Management.UI.RSClient)

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

but if i try and connect to other reporting server on other machine using web http://servername/reportserver i m able to connect it.
but dont know whats the problem on my machine.

do i need to start any services for this...

so anybody knows how to troubleshoot this issue.

Thanks in advance...

View Replies !
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 Replies !
Can I Connect To Remote SQL 2005 Server Through SQL Server Management Studio Express?
Can I connect to remote SQL 2005 server through SQL Server Management Studio Express? I always get a error code 18456 when I try to connect to SQL 2005 server through SQL Server Management Studio Express. I'm sure I enter correct username and password!

View Replies !
SQL Server Management Studio Cannot Connect To Local Instance Of SQL Server 2005 SP2
Hello,

I just installed SQL Server 2005 Enterprise edition from my company's DVD.  It was installed with the setting of using both Integrated windows authenitication as well as basic named authenication.  I installed all the options too: Database Engine, Analysis Services, Reporting Services, SQL Server compact edition, and Integration Services.  When I look at services there are: SQL Server Integration Services, SQL Server Analysis Services, SQL Server Reporting Services, and SQL Server Browser.  All of which are running. Something that took me offguard was the installation did not ask me to provide an SA password.  Other than that, the install looked like it went good.

I was able to connect to the local instance of the SQL Server 2005 using the SQL Server Management Studio.  I could connect with SA, or connect with Integrated Windows Authenication.  Whoohoo.  Off and running!  As a matter of fact, for the SA account I could use any password and it would still log me in.

First thing I did was I went in to the copy wizard to attempt to copy a database from a server on our network to my local box. First it asked me for the remote server.  Then when I specified my local instance in the wizard, the wizard complained that my local instance was NOT SQL Server 2005. Doh!  This I didn't understand. I figured maybe I need to check for MS updates.  Sure enough, I found that ther was a SP2 and then a hot-fix for that SP2.  I applied both.  Now I cannot connect from SQL Server Management studio to my local instance of SQL Server 2005 database server.  I get the following error:

"An error 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 does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (Microsoft SQL Server, Error: 2)"

However, I went in to see what other services I could connect to, and here's the results:

Analysis Services : OK!
Reporting Services (Windows Auth/Basic/Forms) : NG  "The reporting Services Instance could not be found (Microsoft.SqlServer.Management.UI.RSClient)"
SQL Server Compact Edition : NG "The database cannot be found. Check the path to the database. [ File Name = CCG092 ] (SQL Server Compact Edition ADO.NET Data Provider)
Integration Services : OK!

I can connect to other SQL Server databases on our network.  However, just not my local one.  No one on the network can connect to me either.

I even turned off my windows firewall and still no luck connecting to my own.

So something really went wrong when I applied SP2, however, admittedly from the error message when I tried to use the copy wizard, something was probably already wrong.

Any ideas?

Thanks!

View Replies !
How To Create A Data Diagram In SQL Server 2005 Management Studio For A SQL Server 2000 Database
Hello:
I have an old database created in SQL Server 2000,
now I can open, access it in SQL Server 2005 Management Studio, but I can't create Data Diagrams.
Please advise on how to make it work....
Thank you

View Replies !
Is SQL Server 2005 Management Studio (client Components Only) Is Compatible With Windows Server 2000?
Hi,
 
Pls let me know if SQL Server 2005 Management Studio (client tools only) is compatible with Windows Server 2000 or not?
 
Thanks in advance.
 
Regards,
Bhuvana

View Replies !
SQL Server Management Studio Don't See Local SQL Server 2005 Developer Edition X64 On Vista Ultimate X64
SQL Server Management Studio don't see local SQL Server 2005 Developer Edition x64 on Vista Ultimate x64

Hi,
I have strange problem with SQL Server Management Studio on Vista Ultimate
x64. Nothing change after installing all newest  service packs or hot fixes.
I have two running SQL servers on my local machine and all surrounding SQL
services running as well. I have turn on TCP/IP and Named pipes on both of
this servers. Actually I have reinstalled second server after first one
wasn't contactable in any way... After finished installation of second one
and after applying service packs I turn on SQL Server Management Studio and
still nothing in local servers pane when Browsing for servers to connect but
in network servers after few seconds I see one of my local servers (first one
installed) and one SQL Server 2000 on other machine (on this one I can't
connect because of time out error).  Also when browsing for servers in Local
Servers I see my machine in Integration Services. Only difference between
this running services is that Integration service log on as Network Service
and all other SQL services log on as Local System account and on SQL Server
that is invisible I have also SQL Server Reporting Services running.
Services looks like this:
Name                    Status          Startup type        Log On AsSQL Server (KONGORA)                  Started        Automatic          Local System
SQL Server(MSSQLSERVER)            Started        Automatic          Local System
SQL Server Active Directory Hel                       Automatic         Network Service
SQL Server Agent (KONGORA)        Started          Automatic          Local System
SQL Server Agent (MSSQLSERVER)  Started        Automatic          Local System
SQL Server Analysis Services (KONG Started        Automatic          Local System
SQL Server Analysis Services (MSSQL Started      Automatic          Local System
SQL Server Browser                  Started        Automatic        Local System
SQL Server Full Text Search (KONG    Started        Automatic         Local System
SQL Server Full Text Search (MSSQL  Started        Automatic        Local System
SQL Server Integration Services     Started      Automatic        Network Service
SQL Server Reporting Services (MSSQL  Started    Automatic        Local System
SQL Server VSS Writer               Started          Automatic      Local System


Thanks

Stjepan

View Replies !
Constant CPU Usage On Server When Using SQL Server 2005 Management Studio
 
I have recently installed SQL Server 2005 (Developer Ed) + SP1 onto a VMWare based Windows 2003 + SP1 server.
SQL Server works fine when connecting to it using Mangement Studio on Windows XP.
However, I have noticed strange CPU usage on the server which seems to be caused by Management Studio (either directly or indirectly).
When no-one is connecting to the server using Management Studio, the server happily ticks along with CPU usage around 1-5% range. However, as soon as someone connects to the SQL Server instance using Management Studio the CPU usage begin to go up and down constantly.
The CPU usage ranges from 5-50% and it goes up and down (fairly regularly) every few seconds. It does this even when nothing is actually being done in Management Studio. The moment Management Studio is closed, the CPU usage goes back to normal.
The processes on the server that appear to be causing the CPU spikes are services.exe and wmiprvse.exe.
On a possibly connected note (though possibly not), the Security log in the server's Event Viewer shows that there are logins occuring every minute or so (most of the logins are from my account).
Any ideas?

View Replies !
Can Not Connect To Report Server From SQL SERVER 2005 Management Studio
Hi All,

I have a brand new install of sql server 2005 on brand new WINDOWS SERVER2003 with latest versions. Every thing works fine excepting I get a 404 when I connect to report server from management studio..

I am even able to publish reports and all the

url://localhost/reportserver

url://localhost/reports

url://localhost/reportserver/reportbuilder/reportbuilder.application

all work fine on local machine and with in the network behind the fire wall.

But when I try to connect to report server using management studio on the local server or remote server, I get the following error.

"

TITLE: Microsoft SQL Server Management Studio
------------------------------

The attempt to connect to the report server failed.  Check your connection information and that the report server is a compatible version. (Microsoft.SqlServer.Management.UI.RSClient)

------------------------------
ADDITIONAL INFORMATION:

The request failed with HTTP status 404: Not Found. (Microsoft.SqlServer.Management.UI.RSClient)

"

More techinal details

 

"===================================

Cannot connect to xxxxxxxxxxxx.

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

The attempt to connect to the report server failed.  Check your connection information and that the report server is a compatible version. (Microsoft.SqlServer.Management.UI.RSClient)

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

   at Microsoft.SqlServer.ReportingServices2005.RSConnection.MissingEndpointException.ThrowIfEndpointMissing(WebException e)
   at Microsoft.SqlServer.ReportingServices2005.RSConnection.ValidateConnection()
   at Microsoft.SqlServer.Management.UI.RSClient.RSClientConnection.CreateConnection(String connectionString)
   at Microsoft.SqlServer.Management.UI.RSClient.RSConnectionInfo.CreateConnectionObject()
   at Microsoft.SqlServer.Management.UI.RSClient.RSConnectionInfo.RSTypeImpl.GetConnectionObject(UIConnectionInfo ci)
   at Microsoft.SqlServer.Management.UI.ConnectionDlg.RSType.GetConnectionObject(UIConnectionInfo ci)
   at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.ObjectExplorer.ValidateConnection(UIConnectionInfo ci, IServerType server)
   at Microsoft.SqlServer.Management.UI.ConnectionDlg.Connector.ConnectionThreadUser()

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

The request failed with HTTP status 404: Not Found. (Microsoft.SqlServer.Management.UI.RSClient)

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

   at Microsoft.SqlServer.ReportingServices2005.RSConnection.GetSecureMethods()
   at Microsoft.SqlServer.ReportingServices2005.RSConnection.IsSecureMethod(String methodname)
   at Microsoft.SqlServer.ReportingServices2005.RSConnection.ValidateConnection()

"

Any help would be greatly appreciated.

Bob

 

View Replies !
Can Not Connect To Report Server From SQL SERVER 2005 Management Studio
Does anybody knows how to resolve this?

TITLE: Connect to Server
------------------------------

Cannot connect to ServerName.

------------------------------
ADDITIONAL INFORMATION:

The attempt to connect to the report server failed.  Check your connection information and that the report server is a compatible version. (Microsoft.SqlServer.Management.UI.RSClient)

------------------------------

The request failed with HTTP status 404: Not Found. (Microsoft.SqlServer.Management.UI.RSClient)

------------------------------


It was my reporting services can not be accessed using web based. There was an error message "Service Unaivailable"

Then i found out that the Reporting Services under the Application Pool (IIS 6.0) was not running.
Then i recreate application domains, run the Reporting Services, restart the server. and when i try to connect using Management Studio, the error message i got was the above message.

When i try to connect using web, the error i got is :

HTTP Error 404 - File or directory not found.
Internet Information Services (IIS)


Help!!!

View Replies !
SQL Server Management Studio Express 2005 Can't See SQL Server Compact
Hi,

I am very new to SQL Compact. I am trying to create one database which can work on the desktop application and also on a pda application. I want to create the database but I am unable to start without Management Studio. Can you guide me to the right tools so that I can create database, view it and manage it use something like Management Studio Express.

Also one more question is if my database needs to be at both places on the desktop and on pda how can i synchronise them. PDA will take using c# application data from RFID scans and then i need to sync that database on the desktop so that reports and other info can be generated from the desktop c# application. How to do this?

Please can you guide me to any webcasts or labs so i can clarify my doubts about the design.

Regards

Trushar

View Replies !
SQL Server 2005 Everywhere Edition With Sql Server Management Studio Express
Can I use SQL Server 2005 Everywhere Edition with Sql Server Management Studio Express?

If not, what do I need to access sdf file?

Thanks

View Replies !
Difference Between MS Sql Server Management Studio And MS Sql Server 2005 Express?
What is the difference between MS SQL Server Management Studio Express and  MS SQL Server 2005 Express Edition?  i download SQLEXPR.EXE, do i also need to download the other?
 
thank you.

View Replies !
Microsoft SQL Server 2005 Management Studio - Opening SQL-File From Explorer Does Not Connect Automaticly To Server/database
hello,
 
I have a question about opening files in the Microsoft SQL Server 2005 Management Studio.
 
In the old Query Analyzer from SQL 2000 I can open SQL Files via drag & drop (from explorer to QA) or open it with a double click in the explorer. Then the Files opened, if I had actual a connection to a server / database (QA is stared with one file and has a connection to Server/Datebase), with this connection.
 
Now in Microsoft SQL Server 2005 Management Studio I'll be asked everytime for Server and have to get the database from the database list - it does not connect automaticly to server/database, that is actual connected (I have opened a file with the connection and a connected database in the object explorer).
 
Someone do not have this problem - but we found no option to set it up.
 
Any ideas?
 
thanks &
best regards,
Christian Kiedels

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 !
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 !
SQLCe Errors When Doing Developing A SQL Mobile Application With Visual Studio 2005 And SQL Server 2005 Tutorial
I'm attempting to use RDA to synchronize a pocket pc emulator with SQL Server 2005 database by following tutorial http://msdn2.microsoft.com/en-us/library/aa454892.aspx, which uses AdvWorksMobile database that comes with SQL Server 2005.
 
When get to testing of "To test application features " (   step 4 of the merge replication setup lab ),  I am receiving SQLCe Exception errors.
 
ORIGINALLY, I was able to deploy an application and view the local database on the emulator, but once I clicked "InitSinc" button,  I received an error.
 
"Failure to connect to SQL Server with provided connection information. SQL Server does not" exist, access is denied because the SQL user is not a valid user on the SQL Server, or the password is incorrect. 
 Found this error listed in Server Agent Errors log http://technet.microsoft.com/en-us/library/ms172357.aspx, but it wasn't very helpful since it doesn't provide any suggestions on fixing the problems.
 
I am brand new to SQL CE Server , mobile programming and .NET framework in general so please bare with me
 


All the connections / security settings, etc that were set up were taken from a tutorial so I am not sure what SQLCeServer is complaining about. Reading up on the error on the web didn't help, it all pointed to making sure that the snapshot folder had correct permissions set up. I verified that MACHINENAMEUISR_MACHINENAME guest user had Read rights to the database so I don't think that piece is the problem. Otherwise ,Merge publication has been setup in Microsoft SQL Server Management Studio by following the tutorial.
     

 I am trying to run this sync on my home pc so there should be no issues with any user permissions


 I have IIS installed


I did NOT have SQL Server Agent running in management studio at this time


I am trying to run this tutorial on an XP machine, which is my regular home PC so I dont think there are any special networking settings to consider


I am able to hit http://localhost/AdvWorksMobile/sqlcesa30.dll from my pc OK, but when I try to hit it from a cradled emulator ( after replacing "localhost" with "MACHINE_NAME" ), Internet Explorer on the emulator gives me a "Cannot Connect With Current Settings" error message. This part wasn't part of tutorial but decided so not sure if I am supposed to be able to hit it from my emulator..so I am not sure if the fact that I can't hit it is related to the problem.
AFTER STARTING SQL SERVER AGENTin Microsoft SQL Server Management Studio, I killed the application, and after relaunching it, it hits "The Specified table does not exist [Vendor]" error. This time it doesn't even launch first - that is I dont even get to pressing "InitSinc" button. Debugger is showing that this error is hit on the following line in AdvWorksMobile.AddWorksDataSetTableAdapters
 
int returnValue = this.Adapter.Fill(dataTable);
 
I am not sure why the errors changed on me after starting SQL Server Agent.
What can I do to fix this connection problem?
 
Thank you so much for your help!
 
Irina
 
 
 

View Replies !
Problem Mapping SQL Server Mobile And Visual Studio 2005 Dataset
I have a problem.I created a dataset in visual studio 2005 which use tables of SQLServer Mobile.When I create insert query in the relative TableAdapter, the datasetdesigner maps the type numeric of SQL Server Mobile as "Object" andnot "Decimal".The result of this is that when the debug starts there's an exceptionbecause the mapping "Object" and "Numeric" is wrong.To solve this problem I must change manually, in the dataset designercode, the mapping and change ".Object" type in ".Decimal".I must do it every time I change something in dataset because visualstudio regenerate the code of the dataset designer!!!Is there a way to correct this bug in visual studio and make themapping correct?Thanks to everyone would to answer!

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 !
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 !
Regarding SQL SERVER 2005 Management Studio
just now i've installed SQL SERVER 2005 Management studio. i was throwed by an error when i started to run this Management Tool or EXE. the error was as follows:

"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."

what i've to do now?


the below lines are displayed when i clicked the "Details" button:




See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.IO.IOException: Cannot create a stable subkey under a volatile parent key.

   at Microsoft.Win32.RegistryKey.Win32Error(Int32 errorCode, String str)
   at Microsoft.Win32.RegistryKey.CreateSubKey(String subkey, RegistryKeyPermissionCheck permissionCheck, RegistrySecurity registrySecurity)
   at Microsoft.Win32.RegistryKey.CreateSubKey(String subkey)
   at Microsoft.SqlServer.Management.UI.ConnectionDlg.RegisteredServersUtils.CreateKeyValueIfNotExist(String regPath, String keyName)
   at Microsoft.SqlServer.Management.UI.ConnectionDlg.RegisteredServersUtils.RegisterLocalInstancesIfFirstTimeUser()
   at Microsoft.SqlServer.Management.UI.ConnectionDlg.ConnectionDialog.OnLoad(EventArgs e)
   at System.Windows.Forms.Form.OnCreateControl()
   at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
   at System.Windows.Forms.Control.CreateControl()
   at System.Windows.Forms.Control.WmShowWindow(Message& m)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
   at System.Windows.Forms.ContainerControl.WndProc(Message& m)
   at System.Windows.Forms.Form.WmShowWindow(Message& m)
   at System.Windows.Forms.Form.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.42 (RTM.050727-4200)
    CodeBase: file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
----------------------------------------
Microsoft.SqlServer.Express.AppIDPackage
    Assembly Version: 9.0.242.0
    Win32 Version: 9.00.2047.00
    CodeBase: file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.SqlServer.Express.AppIDPackage.DLL
----------------------------------------
Microsoft.SqlServer.Express.VSIntegration
    Assembly Version: 9.0.242.0
    Win32 Version: 9.00.2047.00
    CodeBase: file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.SqlServer.Express.VSIntegration.DLL
----------------------------------------
Microsoft.VisualStudio.Shell.Interop
    Assembly Version: 7.1.40304.0
    Win32 Version: 7.0.4054
    CodeBase: file:///C:/WINDOWS/assembly/GAC/Microsoft.VisualStudio.Shell.Interop/7.1.40304.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Shell.Interop.dll
----------------------------------------
Microsoft.VisualStudio.OLE.Interop
    Assembly Version: 7.1.40304.0
    Win32 Version: 7.0.4054
    CodeBase: file:///C:/WINDOWS/assembly/GAC/Microsoft.VisualStudio.OLE.Interop/7.1.40304.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.OLE.Interop.dll
----------------------------------------
System
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.42 (RTM.050727-4200)
    CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Windows.Forms
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.42 (RTM.050727-4200)
    CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System.Drawing
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.42 (RTM.050727-4200)
    CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
Microsoft.SqlServer.Express.SqlTDiagM
    Assembly Version: 9.0.242.0
    Win32 Version: 9.00.2047.00
    CodeBase: file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.SqlServer.Express.SqlTDiagM.DLL
----------------------------------------
Microsoft.DataWarehouse.SQM
    Assembly Version: 9.0.242.0
    Win32 Version: 9.00.2047.00
    CodeBase: file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.DataWarehouse.SQM.DLL
----------------------------------------
Microsoft.SqlServer.Instapi
    Assembly Version: 9.0.242.0
    Win32 Version: 9.00.1399.00
    CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.Instapi/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.Instapi.dll
----------------------------------------
Microsoft.SqlServer.Express.ObjectExplorer
    Assembly Version: 9.0.242.0
    Win32 Version: 9.00.2047.00
    CodeBase: file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.SqlServer.Express.ObjectExplorer.DLL
----------------------------------------
Microsoft.SqlServer.Express.ConnectionDlg
    Assembly Version: 9.0.242.0
    Win32 Version: 9.00.2047.00
    CodeBase: file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.SqlServer.Express.ConnectionDlg.DLL
----------------------------------------
Microsoft.SqlServer.Express.RegSvrEnum
    Assembly Version: 9.0.242.0
    Win32 Version: 9.00.2047.00
    CodeBase: file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.SqlServer.Express.RegSvrEnum.DLL
----------------------------------------
Microsoft.SqlServer.Express.CustomControls
    Assembly Version: 9.0.242.0
    Win32 Version: 9.00.2047.00
    CodeBase: file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.SqlServer.Express.CustomControls.DLL
----------------------------------------
Microsoft.SqlServer.Express.SqlWorkbench.Interfaces
    Assembly Version: 9.0.242.0
    Win32 Version: 9.00.2047.00
    CodeBase: file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.SqlServer.Express.SqlWorkbench.Interfaces.DLL
----------------------------------------
Microsoft.VisualStudio.TextManager.Interop
    Assembly Version: 7.1.40304.0
    Win32 Version: 7.0.4054
    CodeBase: file:///C:/WINDOWS/assembly/GAC/Microsoft.VisualStudio.TextManager.Interop/7.1.40304.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.TextManager.Interop.dll
----------------------------------------
Accessibility
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.42 (RTM.050727-4200)
    CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
----------------------------------------
Microsoft.SqlServer.Express.SqlMgmt
    Assembly Version: 9.0.242.0
    Win32 Version: 9.00.2047.00
    CodeBase: file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.SqlServer.Express.SqlMgmt.DLL
----------------------------------------
System.Data
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.42 (RTM.050727-4200)
    CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll
----------------------------------------
Microsoft.SqlServer.Express.SQLEditors
    Assembly Version: 9.0.242.0
    Win32 Version: 9.00.2047.00
    CodeBase: file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.SqlServer.Express.SQLEditors.DLL
----------------------------------------
Microsoft.SqlServer.Express.ConnectionInfo
    Assembly Version: 9.0.242.0
    Win32 Version: 9.00.2047.00
    CodeBase: file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.SqlServer.Express.ConnectionInfo.DLL
----------------------------------------
EnvDTE
    Assembly Version: 8.0.0.0
    Win32 Version: 8.0.50727.42 (RTM.050727-4200)
    CodeBase: file:///C:/WINDOWS/assembly/GAC/EnvDTE/8.0.0.0__b03f5f7f11d50a3a/EnvDTE.dll
----------------------------------------
Microsoft.SqlServer.Express.SqlEnum
    Assembly Version: 9.0.242.0
    Win32 Version: 9.00.2047.00
    CodeBase: file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.SqlServer.Express.SqlEnum.DLL
----------------------------------------
Microsoft.NetEnterpriseServers.Express.ExceptionMessageBox
    Assembly Version: 9.0.242.0
    Win32 Version: 9.00.2047.00
    CodeBase: file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.NetEnterpriseServers.Express.ExceptionMessageBox.DLL
----------------------------------------
System.Xml
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.42 (RTM.050727-4200)
    CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------

************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
    <system.windows.forms jitDebugging="true" />
</configuration>

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.

View Replies !
Stopping SQL Server 2005 Via Local Management Studio Throws Error &&"RPC-server Is Not Available&&"
Hi everybody,

I use my local installed Management Server to stop SQL Server 2005 instances. I use the context menu of the "registered Servers" window. That works fine several times. Today I suddenly got error message "RPC-server is not available. (As we run a german version the exact error message is : "Der RPC-Server ist nicht verfügbar (Exception from HRESULT: 0x800706BA) (mscorlib)").
I checked the services of the machine hosting the SQL Server, but verything seems to be OK. I rebooted the maschine without success.
I don't know what happened. But I installed a lot of Updates from MS update site. I think it has something to do with one of these updates.

By the way, it is no problem to stop SQL Server via Management Studio installed on the maschine that host the SQL Server!

Anyone experience the same problem ?

Wolfgang



 

View Replies !
Sql Server 2005 Management Studio Express
hi
guide me how to work and design backend  in sql server 2005 management studio express
 

View Replies !
SQL Server Management Studio 2005 Licensing
I handle all licensing for our companies.  I am trying to completely understand the licensing and want to insure if I approve the installation of Mgmt Studio 2005, that it is covered by SQL Developer licenses?

THANK YOU!

View Replies !
SQL Server 2005 Management Studio Can't Be Found
Sorry if someone already covered this, but I can't find anything about it.

I just installed (3 hours ago actually) SQL2005 Standard Edition (from the Launch event) on my machine, and i don't seem to have a shortcut to the SQL Server 2005 Management Studio anywhere.

I looked for a likely executable, but couldn't find it anywhere.  This wouldn't bother me as much if I could use Enterprise Manager from 2K, but SQL2005 will not allow it to register.

How do I get this going?  There are people here that want to inspect it's features, etc.  I haven't got anything to show them.

 

View Replies !
SQL Server 2005 Management Studio Express
I am trying to install SQL Server Management Studio Express(SSMSE) on Windows XP SP2.
But installtion does not get completed. It goes unto last step in the installation and then rollback itself. At the lat screen it displayes the message that "SQL Server Management Studio Express installation could not be completed as it was intreupted". Though I did not do any thing? I tried at least 20 times but it ends up here.
I followed all the steps as defined in SQL Server Express setup on Microsoft site?

Any help would be appreciated.

ADK

View Replies !
SQL Server Management Studio 2005 Can't Connect
New server - Windows 2003 with latest patches (always up to date)

 

Symantec Antivirus Coporate Edition 10.1

 

SQL 2005 Workgroup Edition

 

If I run SQL Server Management Studio, it connects fine to the server.

 

Then attach a datafile for my application which is installed on the server.

 

I can run app and open database.  All works fine.

 

Then if I try to run SQL Server Management Studio again it can't connect:

 

TITLE: Connect to Server
------------------------------

Cannot connect to HACSRV03.

------------------------------
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 does not allow remote connections. (provider: SQL Network Interfaces, error: 25 - Connection string is not valid) (Microsoft SQL Server, Error: 87)

For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&EvtSrc=MSSQLServer&EvtID=87&LinkId=20476

------------------------------
BUTTONS:

OK
------------------------------


This server is not a production server, as only just installing - like it works fine and then just fails without warning.

 

Help!!!

 

 

View Replies !
SQL Server 2005 Express Management Studio
Hello,

 

I have installed SQL 2005 Express Management Studio several times and It fails to  completely install.  I get a message that SQL Server Express 2005 x84 did not install properly.  I tried to uninstall it and reinstall it but I get the same problem.  My Visual Web 2005 Express Edition and Visual Basic 2005 Express gives an error when I try to add a new database.  The error is: "Failed to generate instance of SQL server due to a failure copying database files.  The connection will be closed.  Does anyone know what I can do to resolve this?  My computer system meets the hardware requirements.

 

Sincerely,

 

Pam

View Replies !
Update SQL Server Management Studio 2005
 

Hi,
 
Is it possible to update SQL Server Management Studio 2005?
 
Thanks for your response in advance.

View Replies !
Bug With SQL Server 2005 Management Studio Express
Every time I try to remove 'condensed type' from the custom table view (working in database diagrams) the MSE crashes on me, as soon as I push the < button to remove it from the list of columns.


Is there a forum or place to post such a bug, or someone to send full details to?  When it dies, it doesn't give me an option to send the information to MS.

 

Cheers,

-jc

View Replies !
SQL Server 2005 Express Edition With SQL Server Management Studio Express (SSMSE)
Hi all,

I have installed SQL server 2005 express edition with SQL server Management studio express (SSMSE).

I have installed also SQLce and I would know how I can manage sql compact edition databases (.ldf) with sql SSMSE, if it is possible!

I would be grateful if you could explain it trought a detailed guide (I am a beginner user of sql server tools) or trought a link to useful sites.

I'm Looking forward for your reply and still trying...

Alessandro

View Replies !
Can SQL Express Db Be Opened With SQL Server 2005 Management Studio?
I'm trying to open a SQL Express database (MDF) with SQL Server 2005 management Studio.  Is that possible?  I'm getting the following error: 
 The specified file is either not a SQL Server Compact Edition file  or is corrupt.
It opens fine in Visual Studio 2005.
Also, is it possible to run a script in Visual Studio 2005?  If so, how?
Thanks, Alex

View Replies !
SQL Server 2005 Management Studio Express Not Logging In
Hello,I've installed SQL Server Managment Studio Express  2005 in my laptop and I already have Visual Studio 2005 Express in my system. The problem I m facing is that when I open the SQL Management Studio so it is not logging in using both the Windows Authentication method nor the SQL Authentication, I've Windows XP Professional in my system and I've set No Password on Windows.  Please tell me, what's the Login and Password of SQL and secondly what's the solution to this problem.Thanking You.SAAD.   

View Replies !
Can I Use SQL 2005 Management Studio To Connect To SQL 2000 Server?
Hi,Can I use SQL 2005 Management studio to connect to SQL 2000 server? 

View Replies !
SQL Server Management Studio Can't 'see' The 2005 Engine?? But Can See 2000 ?!?
Hello,I had SQL2000 server running fine on the windows 2003 box. I then installedSQL 2005 Express. They both worked together fine. I then uninstalled SQL2005 Express and installed SQL 2005 Server. But when I open SQL ServerManagement Studio, I can only connect to the SQL 2000 engine. In the Objectexplorer, it says v8.0.2039 (which I think is SQL 2000 Server, because I cansee the existing SQL 2000 databases).How can I get SQL Server Management Studio to 'see' the SQL 2005 databaseengine so I can create tables? I *think* its running because there is the'sqlservr.exe' process running, and during installation there is no issues.When I open SQL Server Management Studio, I choose 'Database Engine', thenmy local Servername with Windows Authentication. How do I connect to the SQL2005 instance?Thanks,Jack.

View Replies !
Management Studio Missing After Installing SQL Server 2005 Dev
I've just installed SQL Server 2005 Development Edition x64 on Windows XP x64bit. The actual server (as well as Integration, Reporting Services etc) installs fine, I can connect to it via Visual Studio 2005 fine. However, all of the software tools are missing including Management Studio, Business Intelligence Studio etc. They don't show up in the start menu at all and I can't find them in the Program Files directory.

Anyone know how I can get them back? I've tried reinstalling SQL Server 2005, reformatting Windows XP x64, I'm at my wits end!! Many thanks!

View Replies !
SQL Server 2005 And Management Studio Driving Me CRAZY
Is it just me, or are features missing in Management Studio? I mean, where is the "Export Objects" option when exporting data? Why is it so difficult to register a remote server? Why do the object views suck? And most important, why is the documentation  the worst software documentation I have EVER SEEN?!

Things that were easy in Enterprise Manager with Client Network Utility and Query Analyzer seem impossible, difficult, or maybe just hidden in Management Studio. If it is there, the documentation sure doesnt tell you how to find it.

Please someone tell me that it's just me. Tell me that the features are there but Im not doing something right. I feel like putting my head in between my door opening and banging the door against it.

View Replies !
Bug In MS Management Studio For SQL-Server 2005 While Creating A Publication!
Hello,

I found a bug in Management Studio, which can be reproduced with following steps:

1. Create a new publication with the 'New Publication Wizard'
2. Select a database which contains at least 2 tables.
3. Select 'transactional publicatioon'
4. Select at least 2 tables as articles
5. Set article properties for all table articles
6. Change 'Statement Delivery' to 'Insert statement', 'Update statement' and 'Delete statement' and save the article properties.
7. If you now check the properties for a single article you find that the 'Statement Delivery' is set to 'Do not replicate...'. If you generate this publication and create a subscritpion you will see, that actual no replication take place.

It took me a while to find out why my replication doesn't work! :-((

Wolfgang Kunk

PS : Management Studio version is 9.00.1399.00

View Replies !
SQL Server 2005 Management Studio Is Missing After Install
I have several servers that do not have SSMS installed.  A couple of them are running as a clustered server.  How do I install SSMS on these servers?  they are running and have production databases on them.  I have tried re-installing the management tools but that didn't work.
 
Any advice will be greatly appreciated.
 
 

View Replies !
SQL Server 2005 Management Studio On Vista Issue.
Here is my setup.

I have SQL Server 2005 Dev Edition with SP2 installed on Windows Vista Ultimate on my local computer.

I have a development cluster running 2000 as well as several production clusters running 2000. The production clusters are accessed through an encrytped tunnel.

The dilemna.

I am able to connect to the clusters fine. I am also able to access the each DB without incident. My problem comes when I try to connect to DB's with a large number of tables. DB's on the same clusters with around 20 tables come back fine. I am able to start to click on the views drill down and press the stop action and it will display a small list of views. The tables view however, goes into la la land.

My local Dev cluster has all the same DB's as my production clusters and has no problems returning the tables in any of the DB's.

I get an "IS BUSY: Micorsoft SQL Server Managment Studio is waiting for an internal operation to complete." error and the managment studio never completes.

Any help on this would be greatly appreciated.

View Replies !
Error Installation SQL Server Management Studio 2005
Could anyone please help me out. I have tried to install the file SQLServer2005_SSMSEE.msi. Everything goes fine untill right at the end I get this error message:
 

An error occured during the installation of assembly 'Microsoft.VisualStudio.VSHelp80,Version="8.0.0.0",Culture="neutral",PublicKeyToken="b03f5f7f11d50a3a", FileVersion="8.0.50727.42". Please refer to Help and Support for more information. HRESULT: 0x80070020.
 
Then the installation is rolled back.
Thanks for your help in advance.
Paik

View Replies !
SQL 2005 Management Studio Express And SQL Server 2000
Can I use SQL 2005 Management Studio Express to manage my SQL Server 2000 dbs? Currently I have SQL Enterprise Manager Version 8.0 installed and was thinking I'd like to install and use SQL 2005 Management Studio Express instead. This doable?

View Replies !
Single Record View In SQL Server Management Studio (2005)
Hello,
In SQL Server Management Studio (2005), 'Open table' command or a SELECT query displays table rows in a grid (or text).Please tell how to view a single row at a time i.e. all only ONE row is displayed at a time (evenly arranged to cover the screen).
This feature (Single record view) is available in other database client like TOAD.
Thank You

View Replies !

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