Using the Microsoft SQL Server Protocols ForumDiscuss technical content and implementation of the SQL Server protocols described in the Open Specifications.© 2009 Microsoft Corporation. All rights reserved.Mon, 12 Oct 2009 20:21:20 Zbc99d852-21ec-4172-9732-fffd2daca7dbhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/43ee57f3-236d-49ee-b98d-c0fe302f23c0http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/43ee57f3-236d-49ee-b98d-c0fe302f23c0Steve Harlingtonhttp://social.msdn.microsoft.com/Profile/en-US/?user=Steve%20HarlingtonReferencing images on a hard drive from reporting services 2005 1.  I have picture images on hard drive(s) simular to the following, the images are not stored in the database only a reference. The images will always be on the same PC running sql server.<br>c:\cyclops\2008\08\29\imag1.jpg<br>e:\test\2007\07\02\image2.jpg<br><br>2. I have a field in the sql 2005 database that stores the location of each image as shown above.<br>3. I have created the following sql to return the image location from the database (Select ReportImage from ReportImage).<br>4. I have used a table with an image item within a body cell and set the folowing properties  for the image item using reporting services 2005:<br>Source = External<br>Value =  <font size=2>=Fields!ReportImage.Value<br></font>MIMEType = image/jpeg<br><br>4. When I run the report in preview mode I get the following error:<br><br><font size=1> <p>[rsUnsupportedProtocol] The image ‘image5’ has the URL “C:\Documents and Settings\steveha\My Documents\My Pictures\vcimage.bmp” as one of its properties. URLs in reports must begin with one of the following prefixes: http://, https://, ftp://, file:, mailto:, or news:.</p></font>5. So my question is how do you display images within a report where the images are on a hard drive and not in the database or on a web page? Thousands of these images exist and there size can be upto 200K.<br>Wed, 24 Sep 2008 00:23:52 Z2009-10-12T20:21:20Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/87d7fbeb-ec58-4f9a-879d-55fcca8495fehttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/87d7fbeb-ec58-4f9a-879d-55fcca8495feSachin Polhttp://social.msdn.microsoft.com/Profile/en-US/?user=Sachin%20PolBizTalk Server capacityHi,<br/>I want some pointers to the max capacity limits of BizTalk server. Like max number of databases, hosts , host instances, max size of databases.<br/>Can someone guide me about this ?<br/><br/>Thanks in advance,<br/>Sachin PolMon, 14 Sep 2009 10:13:02 Z2009-09-14T16:35:50Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/ca778e45-ee6a-4898-9723-0f1ce6e30833http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/ca778e45-ee6a-4898-9723-0f1ce6e30833RavishankerMadurihttp://social.msdn.microsoft.com/Profile/en-US/?user=RavishankerMaduriHow to reset the Identity Value if any value deleted in mid or atlast.<p> AdventureWorks<br/>GO<br/>/* Create a table with one identity column */<br/>CREATE TABLE TableID (ID INT IDENTITY(1,1), Col VARCHAR(10))<br/>GO<br/>/* Insert 10 records with first value */<br/>INSERT INTO TableID (Col)<br/>VALUES ('First')<br/>GO 10<br/>/* Check the records in table */<br/>SELECT *<br/>FROM TableID<br/>GO<br/>/* Delete last few records */<br/>DELETE<br/>FROM TableID<br/>WHERE ID IN (8,9,10)<br/>GO<br/>/* Check the records in table */<br/>SELECT *<br/>FROM TableID<br/>GO<br/>/* Get current Max Value and reseed table */<br/>DECLARE @MaxID INT<br/>SELECT @MaxID = MAX(ID)<br/>FROM TableID<br/>DBCC CHECKIDENT('TableID', RESEED, @MaxID)<br/>GO<br/>/* Insert 10 records with second value */<br/>INSERT INTO TableID (Col)<br/>VALUES ('Second')<br/>GO 5<br/>/* Check the records in table */<br/>SELECT *<br/>FROM TableID<br/>GO<br/>/* Clean Database */<br/>DROP TABLE TableID<br/>GO</p> <p> </p> <p> </p> <p>CREATE TABLE TableID (ID INT IDENTITY(1,1), Col VARCHAR(10))<br/>GO<br/>/* Insert 10 records with first value */<br/>INSERT INTO TableID (Col)<br/>VALUES (’First’)<br/>GO 10<br/>/* Check the records in table */<br/>SELECT *<br/>FROM TableID<br/>GO<br/>/* Delete records from middle and bottom both*/<br/>DELETE<br/>FROM TableID<br/>WHERE ID IN (4,7,11,12)<br/>Go<br/>/* Check the records in table */<br/>SELECT *<br/>FROM TableID<br/>GO<br/>/*<br/>Now check the missing identity values<br/>To Do so we will create a memory table with a sequential number,<br/>from 1 to the ident_current value and join that to the live table.<br/>*/<br/>Declare @rows Int<br/>Declare @numberOfRowsToInsert Int</p> <p>declare @seq table (<br/>seq int not null primary key<br/>)<br/>/* Get current Max Value and reseed table */<br/>SELECT @rows = MAX(ID) FROM TableID<br/>DBCC CHECKIDENT(’TableID’, RESEED, @rows)<br/>set @rows = (select Ident_Current(’TableID’)) + 5<br/>/* Insert values into Memory table */<br/>declare @i int<br/>set @i = 1<br/>while @i &lt;= @rows<br/>begin<br/>insert @seq values( @i )<br/>set @i = @i + 1<br/>end<br/>/* Now set the Identity Insert On, so that we can insert any number */<br/>Set Identity_Insert TableID On</p> <p>INSERT INTO TableID(Id,col) Select seq,’Third’<br/>From @seq left outer join TableID T on seq = T.ID<br/>Where T.ID Is Null</p> <p>Set Identity_Insert TableID OFF<br/>/* Check the records in table */<br/>SELECT *<br/>FROM TableID<br/>GO<br/>/* Clean Database */<br/>DROP TABLE TableID<br/>GO</p><hr class="sig">Ravishankar Maduri MCTS,MCPD,MCPThu, 10 Sep 2009 08:13:09 Z2009-09-10T14:56:34Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/4f5126bd-552d-4db5-8b09-c9a2d5cbf13ahttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/4f5126bd-552d-4db5-8b09-c9a2d5cbf13aescannhttp://social.msdn.microsoft.com/Profile/en-US/?user=escannError when installing replication on a Vista x64 machineWhen I use Replication.Distributor.Install from an app on a Vista x64 machine I get the following error:  Unable to create Distribution database:<br/>-2147207391 - [Mirosoft][ODBC SQL Server Driver][SQL Server]Could  not execute &quot;C:\Program Files ^(x86^)\Microsoft SQL Server\80\Tools\binn\osql&quot; -E -S&quot;VistaX64\SL&quot; -I60 -t60 -d&quot;distribution&quot; -b -i&quot;C:\Program Files ^(x86^)\Microsoft SQL Server\MSSQL$SL\install\instdist.sql&quot; -o&quot;C:\Program Files ^(x86^)\Microsoft SQL Server\MSSQL$SL\install\instdist.out&quot;<br/><br/>As far as I can tell there is a problem with the path (^).  I am using MSDE 2000.<br/><br/>Kind Regards<br/>Eric CannMon, 29 Jun 2009 09:56:25 Z2009-07-01T13:45:09Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/6555adbe-3dec-4b79-a1f9-434d03b9d342http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/6555adbe-3dec-4b79-a1f9-434d03b9d342ODO_ODOhttp://social.msdn.microsoft.com/Profile/en-US/?user=ODO_ODOWhen will Microsoft release the binary specs for SQL Server database files?I need to be able to access these files on Unix / Linux and possibly mainframe based computer systems. Read access is all that is required. I need official Microsoft documentation or as an alternative routines written in C++ that can be used to compile on a Unix platform and access the MDB files. Installing Microsoft products or utilities is not an option unless they run on a Unix and Linux based system. The content of these files is most likely medical records but is not limited to that information. 3rd party reverse engineered information is not acceptable or suitable. Accuracy and completeness of information is critical.<br/><br/>Fri, 22 May 2009 20:08:41 Z2009-05-27T23:42:44Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/6dd7123d-c7c1-4fe0-8afc-2d5bb18d9368http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/6dd7123d-c7c1-4fe0-8afc-2d5bb18d9368Salgarhttp://social.msdn.microsoft.com/Profile/en-US/?user=SalgarProtocol Violation Hi There,<br/> <br/> While making a HTTPRequest inside CLR Stored proc. I am getting a protocol violation inside the SQL Server Stored Procedure.<br/> <br/> Unfortunately I cant use unsafeheaders=true tag. Could you please help me in getting around this issue?<br/> <br/> Any help would be greatly appreciated<br/> <br/> Thanks,<br/> NitinTue, 12 May 2009 00:44:11 Z2009-05-15T19:17:58Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/968464bf-c26d-485d-888e-8aa21d1f666dhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/968464bf-c26d-485d-888e-8aa21d1f666dJeremy Chaneyhttp://social.msdn.microsoft.com/Profile/en-US/?user=Jeremy%20ChaneyI don't know if this is the correct forum......but I'm new to using SQL in C# and I need to know how to do a couple of things:<br><br>1) How do I create a SQL database?<br>2) Once I've created it, how do I add tables and columns to it?<br>3) Once I've added the table and columns how do I insert data into the tables and columns?<br><br>I've done some reading of the documentation and it looks like I need to create a SqlConnection object and pass it a bunch of strings, but I can't figure out what each of the strings mean, or if the database needs to already exist before I create the SqlConnection command.<br><br>If this is the wrong forum to post this question, then please point me to the correct one. I have a project that is due by Monday, and if I don't complete it, then I'm probably going to get fired- so somebody, please, please help me!<br>Thanks,<br>--Jeremy<br><br>Sun, 15 Mar 2009 01:45:37 Z2009-03-15T03:06:15Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/8a9313bf-a33d-4451-b1cd-374e3226fbcehttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/8a9313bf-a33d-4451-b1cd-374e3226fbceOurNedhttp://social.msdn.microsoft.com/Profile/en-US/?user=OurNedTable Design<font size=2>Hi Guys!<br>  </font> <p style="margin:0in 0in 0pt"><font style="font-size:12px">I have to create a table in SQL Server 2000 with the structure like:</font></p> <p style="margin:0in 0in 0pt"><font style="font-size:12px"> </font></p> <p style="margin:0in 0in 0pt"><b><font style="font-size:12px">St_ID               St_Name           1          2          3          4          5...... 31</font></b></p> <p style="margin:0in 0in 0pt"><font style="font-size:12px"> 1                        Jom                  P        </font></p> <p style="margin:0in 0in 0pt"><font style="font-size:12px"> 2                        John                 P</font></p> <p style="margin:0in 0in 0pt"><font style="font-size:12px"> 3                        Kemp               A</font></p> <p style="margin:0in 0in 0pt"><font style="font-size:12px"> </font></p> <p style="margin:0in 0in 0pt"><font style="font-size:12px">This table will store the student’s roll calls on daily basis ‘A’ is for absent and 'P' for present and 1, 2, 3, 4 ….. 31 are the days on which roll call will be marked</font></p> <p style="margin:0in 0in 0pt"><font style="font-size:12px"> </font></p> <p style="margin:0in 0in 0pt"><font style="font-size:12px">My question: is it possible to create a table in this fashion so it only records their attendance daily??? Because its structure is alot different from normal scenario that is i'm concentrating on columns rather than rows… i want to enter data into the columns only… i have nothing to do with St_ID and St_Name but each time i have to enter data for days (1, 2, 3, 4… 31) column.<br><br><font size=2>Kindly, inform me if i have posted the thread in the wrong Place... and kindly direct me where should i post... need help coz i'm new to forums<br><br>Thanks beforehand<br></font><br>Yours Truly,<br><br>Ned<br></font></p>Thu, 05 Feb 2009 22:00:30 Z2009-03-02T21:30:26Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/f8457714-9fbb-4e76-91d9-f124f2cda81dhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/f8457714-9fbb-4e76-91d9-f124f2cda81dDick Bakerhttp://social.msdn.microsoft.com/Profile/en-US/?user=Dick%20Bakermessage format request for 1434 the 9 SQL open specifications are a very small part of the whole proprietary SQL landscape<br>- even more so if you realise that 3 belong to MS Office and have no SQL content !<br><br>my current interest is to discover the formats of request and response to 1434 poll (to SQL Browser)<br>- ie UDP broadcast out and UDP reply from [unhidden] instances<br><br>FYI the reason is that I am frustrated by the SMO (and hence SQLCMD -Lc) lists that are atrocious to identify instances<br>- typically the server name is shown (eg MYSVR) and not the instances (MYSVR\BKUPEXEC, MYSVR\MSSERVER [default], etc)<br><br>By using Network Monitor (plaudit to MS for making available to non-SMS audience) I can see responses include protocol+port, version etc [even without a login to the instance(s)], but a formal definition would be appreciated<br><br>I had hoped that SQL2008 would be better at surfacing such riches, but without this I propose to write to network API to request and handle responses.<br><br><br>As this is one of the few (I only found another ONE!) targetted to this forum, hopefully MS will address this request properly and quickly<br><br>TIA<br>DickSun, 08 Feb 2009 19:39:46 Z2009-03-03T22:25:59Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/64cc5ad2-4d1a-451b-b128-239578d156a0http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/64cc5ad2-4d1a-451b-b128-239578d156a0series playerhttp://social.msdn.microsoft.com/Profile/en-US/?user=series%20playerfree download microsoft windows xp professional service pack (sp) 2WHAT`S THE BEST STEPS IN DOWNLOADING, TRYOUT VERSION<br><br> <hr class="sig">Too whom it`s concernTue, 03 Feb 2009 21:18:01 Z2009-02-04T10:25:14Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/47bcc40f-bce1-4936-8e1d-b41b24e20ae1http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/47bcc40f-bce1-4936-8e1d-b41b24e20ae1TripleMPhttp://social.msdn.microsoft.com/Profile/en-US/?user=TripleMPLogFile Class I'm workin with System::IO::Log::FileRecordSequence class and System::IO::Log::LogRecord class in this way:<br><br><font color="#008000" size=2><font color="#008000" size=2> <p>System::IO::Log::FileRecordSequence ^ fLog = gcnew System::IO::Log::FileRecordSequence(&quot;C:\Program Files\MicroSoft SQL Server\MSSQL\data\AdvisorTest_Log.LDF&quot;);</p></font></font><font color="#008000" size=2><font color="#008000" size=2> <p><br>for each (System::IO::Log::LogRecord ^ reg in fLog-&gt;ReadLogRecords(fLog-&gt;BaseSequenceNumber, System::IO::Log::LogRecordEnumeratorType::Next)<br>{<br>    ...<br>}<br><br>Can somebody help me???????<br><br>Thanks.<br></p></font></font><hr class="sig">mikeTue, 03 Feb 2009 00:22:42 Z2009-02-05T22:57:33Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/786131fa-9b59-4206-8e8b-b6b21068779fhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/786131fa-9b59-4206-8e8b-b6b21068779fMabunhttp://social.msdn.microsoft.com/Profile/en-US/?user=Mabunhow o fetch specific data from table hi all<br><br><br>here i hv a table <br> id         name           age....<br>1           anu              12<br>2           anu              13<br>34         radha        23<br>12            anu            10<br><br><br>like this i have so many records of same name anu in my table which have unique id ,,,<br>but my task is to fetch the 3rd anus record without knowing id or age <br>how can i fetch tha perticular  row's data<br>pls help its urgent//<br>Tue, 20 Jan 2009 10:54:43 Z2009-01-25T02:48:43Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/ad03823c-440e-454e-9f12-3f1026007d36http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/ad03823c-440e-454e-9f12-3f1026007d36simosihttp://social.msdn.microsoft.com/Profile/en-US/?user=simosiwhy do we split one table to two table?please help hi guys,<br>suppose you have a Hospital database.in here i have one table by name of Doctors which has two columns:DocID,DocName<br>and one table by name of Patients which has 3 columns:PatientID,PatientNAme,DocID<br><br>my question is why couldn't we have one table which has 3 columns like this:<br>PatientID,PatientName,DocName<br><br>why do we split this table to two seperate table.do we do this because we dont want to waste memory.i mean do we do this because we dont want to repeat for example DocAli for example for 2000 patient.and instead we want to use code of DocAli.is this for memory maintaing.??????<br><hr class="sig">Brainstorm your Brain and find solution,if no result stuck to Brainstormer.Wed, 31 Dec 2008 07:47:53 Z2009-01-06T22:33:11Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/5038c056-ac8a-4b5f-aed9-c37cf4036244http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/5038c056-ac8a-4b5f-aed9-c37cf4036244Sumit_DBAhttp://social.msdn.microsoft.com/Profile/en-US/?user=Sumit_DBAUpdating maintenance Plan in SQL 2005 gives unhandled exception  Steps : <br> <p>1. Created Maintenance Plan through wizard.<br>2. Modified it, i.e. Added &quot;Maintenance Cleanup Task&quot;<br>      In this <br>Connection Combo Box Value :- Local Server Connction.<br>Radio button :- Backup Files<br><br>Search Folder and delete file based on extension:<br>While clicking on  Browse (...) button for Folder dialogue box, following unhandled exception occured:== <br><br>See the end of this message for details on invoking <br>just-in-time (JIT) debugging instead of this dialog box.</p> <p>************** Exception Text **************<br>Microsoft.SqlServer.Management.Smo.EnumeratorException: Failed to retrieve data for this request. ---&gt; Microsoft.SqlServer.Management.Common.ConnectionFailureException: Failed to connect to server . ---&gt; System.Data.SqlClient.SqlException: Login failed for user 'sa'.<br>   at System.Data.ProviderBase.DbConnectionPool.GetConnection(DbConnection owningObject)<br>   at System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection)<br>   at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory)<br>   at System.Data.SqlClient.SqlConnection.Open()<br>   at Microsoft.SqlServer.Management.Common.ConnectionManager.InternalConnect(WindowsIdentity impersonatedIdentity)<br>   at Microsoft.SqlServer.Management.Common.ConnectionManager.Connect()<br>   --- End of inner exception stack trace ---<br>   at Microsoft.SqlServer.Management.Common.ConnectionManager.Connect()<br>   at Microsoft.SqlServer.Management.Smo.ExecuteSql.Connect()<br>   at Microsoft.SqlServer.Management.Smo.ExecuteSql.GetDataProvider(StringCollection query, Object con, StatementBuilder sb, RetriveMode rm)<br>   at Microsoft.SqlServer.Management.Smo.ExecuteSql.ExecuteWithResults(StringCollection query, Object con, StatementBuilder sb)<br>   at Microsoft.SqlServer.Management.Smo.SqlObjectBase.FillData(ResultType resultType, StringCollection sql, Object connectionInfo, StatementBuilder sb)<br>   at Microsoft.SqlServer.Management.Smo.SqlObjectBase.FillDataWithUseFailure(SqlEnumResult sqlresult, ResultType resultType)<br>   at Microsoft.SqlServer.Management.Smo.SqlObjectBase.BuildResult(EnumResult result)<br>   at Microsoft.SqlServer.Management.Smo.SqlObjectBase.GetData(EnumResult erParent)<br>   at Microsoft.SqlServer.Management.Smo.Environment.GetData()<br>   at Microsoft.SqlServer.Management.Smo.Environment.GetData(Request req, Object ci)<br>   at Microsoft.SqlServer.Management.Smo.Enumerator.GetData(Object connectionInfo, Request request)<br>   at Microsoft.SqlServer.Management.Smo.Enumerator.Process(Object connectionInfo, Request request)<br>   --- End of inner exception stack trace ---<br>   at Microsoft.SqlServer.Management.Smo.Enumerator.Process(Object connectionInfo, Request request)<br>   at Microsoft.SqlServer.Management.SqlMgmt.BrowseFolder.FillDrives()<br>   at Microsoft.SqlServer.Management.SqlMgmt.BrowseFolder.Init()<br>   at Microsoft.SqlServer.Management.DatabaseMaintenance.DbMaintTaskFileCleanUpControl.buttonSelectFolder_Click(Object sender, EventArgs e)<br>   at System.Windows.Forms.Control.OnClick(EventArgs e)<br>   at System.Windows.Forms.Button.OnClick(EventArgs e)<br>   at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)<br>   at System.Windows.Forms.Control.WmMouseUp(Message&amp; m, MouseButtons button, Int32 clicks)<br>   at System.Windows.Forms.Control.WndProc(Message&amp; m)<br>   at System.Windows.Forms.ButtonBase.WndProc(Message&amp; m)<br>   at System.Windows.Forms.Button.WndProc(Message&amp; m)<br>   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message&amp; m)<br>   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message&amp; m)<br>   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)</p> <p><br>************** Loaded Assemblies **************<br>mscorlib<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)<br>    CodeBase: <a>file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll</a><br>----------------------------------------<br>AppIDPackage<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/AppIDPackage.DLL</a><br>----------------------------------------<br>System<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.SqlTools.VSIntegration<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.SqlServer.SqlTools.VSIntegration.DLL</a><br>----------------------------------------<br>Microsoft.VisualStudio.Shell.Interop<br>    Assembly Version: 7.1.40304.0<br>    Win32 Version: 7.0.4054<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC/Microsoft.VisualStudio.Shell.Interop/7.1.40304.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Shell.Interop.dll</a><br>----------------------------------------<br>Microsoft.VisualStudio.OLE.Interop<br>    Assembly Version: 7.1.40304.0<br>    Win32 Version: 7.0.4054<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC/Microsoft.VisualStudio.OLE.Interop/7.1.40304.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.OLE.Interop.dll</a><br>----------------------------------------<br>System.Windows.Forms<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll</a><br>----------------------------------------<br>System.Drawing<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.SqlTDiagM<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.SqlTDiagM/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.SqlTDiagM.dll</a><br>----------------------------------------<br>Microsoft.DataWarehouse.SQM<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.DataWarehouse.SQM.DLL</a><br>----------------------------------------<br>Microsoft.SqlServer.Instapi<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.Instapi/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.Instapi.dll</a><br>----------------------------------------<br>EnvDTE<br>    Assembly Version: 8.0.0.0<br>    Win32 Version: 8.0.50727.42 (RTM.050727-4200)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC/EnvDTE/8.0.0.0__b03f5f7f11d50a3a/EnvDTE.dll</a><br>----------------------------------------<br>SqlWorkbench.Interfaces<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/SqlWorkbench.Interfaces.DLL</a><br>----------------------------------------<br>Microsoft.NetEnterpriseServers.ExceptionMessageBox<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.NetEnterpriseServers.ExceptionMessageBox/9.0.242.0__89845dcd8080cc91/Microsoft.NetEnterpriseServers.ExceptionMessageBox.dll</a><br>----------------------------------------<br>ObjectExplorer<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/ObjectExplorer.DLL</a><br>----------------------------------------<br>ConnectionDlg<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/ConnectionDlg.DLL</a><br>----------------------------------------<br>Microsoft.SqlServer.CustomControls<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.2047.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.CustomControls/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.CustomControls.dll</a><br>----------------------------------------<br>Accessibility<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll</a><br>----------------------------------------<br>SqlMgmt<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/SqlMgmt.DLL</a><br>----------------------------------------<br>Microsoft.SqlServer.RegSvrEnum<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.2047.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.RegSvrEnum/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.RegSvrEnum.dll</a><br>----------------------------------------<br>System.Data<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_32/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.ConnectionInfo<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.ConnectionInfo/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.ConnectionInfo.dll</a><br>----------------------------------------<br>System.Xml<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.SmoEnum<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.2047.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.SmoEnum/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.SmoEnum.dll</a><br>----------------------------------------<br>System.Configuration<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll</a><br>----------------------------------------<br>System.Transactions<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_32/System.Transactions/2.0.0.0__b77a5c561934e089/System.Transactions.dll</a><br>----------------------------------------<br>System.EnterpriseServices<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_32/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.Smo<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.2047.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.Smo/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.Smo.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.SqlEnum<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.2047.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.SqlEnum/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.SqlEnum.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.BatchParser<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 2005.090.2047.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_32/Microsoft.SqlServer.BatchParser/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.BatchParser.dll</a><br>----------------------------------------<br>msvcm80<br>    Assembly Version: 8.0.50727.3053<br>    Win32 Version: 8.00.50727.3053<br>    CodeBase: <a>file:///C:/WINDOWS/WinSxS/x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.3053_x-ww_B80FA8CA/msvcm80.dll</a><br>----------------------------------------<br>System.Management<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/System.Management/2.0.0.0__b03f5f7f11d50a3a/System.Management.dll</a><br>----------------------------------------<br>ObjectExplorerReplication<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/ObjectExplorerReplication.DLL</a><br>----------------------------------------<br>Microsoft.ReportViewer.WinForms<br>    Assembly Version: 8.0.0.0<br>    Win32 Version: 8.0.50727.42<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.ReportViewer.WinForms/8.0.0.0__b03f5f7f11d50a3a/Microsoft.ReportViewer.WinForms.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.SString<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.SString/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.SString.dll</a><br>----------------------------------------<br>SQLEditors<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/SQLEditors.DLL</a><br>----------------------------------------<br>Microsoft.VisualStudio.TextManager.Interop<br>    Assembly Version: 7.1.40304.0<br>    Win32 Version: 7.0.4054<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC/Microsoft.VisualStudio.TextManager.Interop/7.1.40304.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.TextManager.Interop.dll</a><br>----------------------------------------<br>Microsoft.DataTransformationServices.Interfaces<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.DataTransformationServices.Interfaces.DLL</a><br>----------------------------------------<br>Microsoft.DataTransformationServices.VsIntegration<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.DataTransformationServices.VsIntegration.DLL</a><br>----------------------------------------<br>Microsoft.DataWarehouse.VsIntegration<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.DataWarehouse.VsIntegration.DLL</a><br>----------------------------------------<br>Microsoft.VisualStudio.Shell<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.42 (RTM.050727-4200)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.VisualStudio.Shell/2.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Shell.dll</a><br>----------------------------------------<br>Microsoft.VisualStudio.Shell.Interop.8.0<br>    Assembly Version: 8.0.0.0<br>    Win32 Version: 8.0.50727.42 (RTM.050727-4200)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC/Microsoft.VisualStudio.Shell.Interop.8.0/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Shell.Interop.8.0.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.ManagedDTS<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.ManagedDTS/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.ManagedDTS.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.DTSRuntimeWrap<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.0.242.0<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.DTSRuntimeWrap/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.DTSRuntimeWrap.dll</a><br>----------------------------------------<br>CustomMarshalers<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_32/CustomMarshalers/2.0.0.0__b03f5f7f11d50a3a/CustomMarshalers.dll</a><br>----------------------------------------<br>Microsoft.DataWarehouse<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.DataWarehouse.DLL</a><br>----------------------------------------<br>Microsoft.DataWarehouse.Interfaces<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.2047.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.DataWarehouse.Interfaces/9.0.242.0__89845dcd8080cc91/Microsoft.DataWarehouse.Interfaces.dll</a><br>----------------------------------------<br>Microsoft.DataTransformationServices.Design<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.DataTransformationServices.Design.DLL</a><br>----------------------------------------<br>Microsoft.AnalysisServices.Project<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 2005.090.1399.00<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.AnalysisServices.Project.DLL</a><br>----------------------------------------<br>Microsoft.VisualStudio.Designer.Interfaces<br>    Assembly Version: 1.0.5000.0<br>    Win32 Version: 1.1.4322.573<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC/Microsoft.VisualStudio.Designer.Interfaces/1.0.5000.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Designer.Interfaces.dll</a><br>----------------------------------------<br>Microsoft.VisualStudio.Design<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.42 (RTM.050727-4200)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.VisualStudio.Design/2.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Design.dll</a><br>----------------------------------------<br>System.Design<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/System.Design/2.0.0.0__b03f5f7f11d50a3a/System.Design.dll</a><br>----------------------------------------<br>Microsoft.VisualStudio.Shell.Design<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.42 (RTM.050727-4200)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.VisualStudio.Shell.Design/2.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Shell.Design.dll</a><br>----------------------------------------<br>Microsoft.AnalysisServices<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.2047.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.AnalysisServices/9.0.242.0__89845dcd8080cc91/Microsoft.AnalysisServices.dll</a><br>----------------------------------------<br>Microsoft.DataTransformationServices.Controls<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.DataTransformationServices.Controls/9.0.242.0__89845dcd8080cc91/Microsoft.DataTransformationServices.Controls.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.DTSPipelineWrap<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.0.242.0<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.DTSPipelineWrap/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.DTSPipelineWrap.dll</a><br>----------------------------------------<br>Microsoft.AnalysisServices.Controls<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.AnalysisServices.Controls.DLL</a><br>----------------------------------------<br>Microsoft.SqlServer.Dts.Design<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.Dts.Design/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.Dts.Design.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.MaintenancePlanTasksUI<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.MaintenancePlanTasksUI/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.MaintenancePlanTasksUI.dll</a><br>----------------------------------------<br>Microsoft.VisualStudio<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.42 built by: RTM<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.VisualStudio/2.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.dll</a><br>----------------------------------------<br>System.Drawing.Design<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/System.Drawing.Design/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.Design.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.MaintenancePlanTasks<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.MaintenancePlanTasks/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.MaintenancePlanTasks.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.SQLTask<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_32/Microsoft.SqlServer.SQLTask/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.SQLTask.dll</a><br>----------------------------------------<br>msddsp<br>    Assembly Version: 8.0.0.0<br>    Win32 Version: 8.0.0.0<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/msddsp/8.0.0.0__b03f5f7f11d50a3a/msddsp.dll</a><br>----------------------------------------<br>Microsoft.DataWarehouse.Layout<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.DataWarehouse.Layout.DLL</a><br>----------------------------------------<br>stdole<br>    Assembly Version: 7.0.3300.0<br>    Win32 Version: 7.00.9466<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC/stdole/7.0.3300.0__b03f5f7f11d50a3a/stdole.dll</a><br>----------------------------------------<br>msddslmp<br>    Assembly Version: 8.0.0.0<br>    Win32 Version: 8.0.50727.42 (RTM.050727-4200)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/msddslmp/8.0.0.0__b03f5f7f11d50a3a/msddslmp.dll</a><br>----------------------------------------<br>DdsShapesLib<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.0.242.0<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/DdsShapesLib.DLL</a><br>----------------------------------------<br>VSLangProj<br>    Assembly Version: 7.0.3300.0<br>    Win32 Version: 7.00.9466<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC/VSLangProj/7.0.3300.0__b03f5f7f11d50a3a/VSLangProj.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.Management.MaintenancePlanWizard<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Microsoft.SqlServer.Management.MaintenancePlanWizard.DLL</a><br>----------------------------------------<br>Microsoft.SqlServer.WizardFramework<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.WizardFramework/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.WizardFramework.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.GridControl<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.GridControl/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.GridControl.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.msxml6_interop<br>    Assembly Version: 6.0.0.0<br>    Win32 Version: 6.0.0.0<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.msxml6_interop/6.0.0.0__89845dcd8080cc91/Microsoft.SqlServer.msxml6_interop.dll</a><br>----------------------------------------<br>Microsoft.VisualStudio.Debugger.Interop<br>    Assembly Version: 8.0.1.0<br>    Win32 Version: 8.0.50727.42 (RTM.050727-4200)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC/Microsoft.VisualStudio.Debugger.Interop/8.0.1.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Debugger.Interop.dll</a><br>----------------------------------------<br>Interop.VisioGraph_2_100<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.0.242.0<br>    CodeBase: <a>file:///C:/Program%20Files/Microsoft%20SQL%20Server/90/Tools/Binn/VSShell/Common7/IDE/Interop.VisioGraph_2_100.DLL</a><br>----------------------------------------<br>Microsoft.SqlServer.DtsMsg<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.DtsMsg/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.DtsMsg.dll</a><br>----------------------------------------<br>System.Web<br>    Assembly Version: 2.0.0.0<br>    Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_32/System.Web/2.0.0.0__b03f5f7f11d50a3a/System.Web.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.DlgGrid<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.DlgGrid/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.DlgGrid.dll</a><br>----------------------------------------<br>Microsoft.SqlServer.DataStorage<br>    Assembly Version: 9.0.242.0<br>    Win32 Version: 9.00.1399.00<br>    CodeBase: <a>file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.SqlServer.DataStorage/9.0.242.0__89845dcd8080cc91/Microsoft.SqlServer.DataStorage.dll</a><br>----------------------------------------</p> <p>************** JIT Debugging **************<br>To enable just-in-time (JIT) debugging, the .config file for this<br>application or computer (machine.config) must have the<br>jitDebugging value set in the system.windows.forms section.<br>The application must also be compiled with debugging<br>enabled.</p> <p>For example:</p> <p>&lt;configuration&gt;<br>    &lt;system.windows.forms jitDebugging=&quot;true&quot; /&gt;<br>&lt;/configuration&gt;</p> <p>When JIT debugging is enabled, any unhandled exception<br>will be sent to the JIT debugger registered on the computer<br>rather than be handled by this dialog box.</p> <p><br> </p>Mon, 29 Dec 2008 05:38:47 Z2009-01-06T22:33:29Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/2024c3f1-4938-4f88-97a3-a41861a0ad0chttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/2024c3f1-4938-4f88-97a3-a41861a0ad0cnjerichttp://social.msdn.microsoft.com/Profile/en-US/?user=njericMultiple SQL Server Instances display in ODBC Server drop down I've encountered this problem a few times and don't seem to know why it's happening.  Basically when you configure and ODBC connection to either a SQL Server 2000 or 2005 instance when you go to specify a server name that server name appears twice in the selection box.  One will not work where as the other one will.  Any ideas on this problem?<br><br>Fri, 31 Oct 2008 17:08:54 Z2008-12-24T05:37:38Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/19ea741c-32ef-43bd-9b3d-38b08aca5a39http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/19ea741c-32ef-43bd-9b3d-38b08aca5a39spiritgatehttp://social.msdn.microsoft.com/Profile/en-US/?user=spiritgateConnect sql database to visual studio errorI have a problem by connecting sql server to visual studio. It always say that i cannot find my username. I using window authentication. How can I overcome this problem?<br><br>Thanks!<br> Mon, 22 Dec 2008 02:54:45 Z2009-01-06T22:33:41Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/0b668e8c-b11e-4693-a116-ab32d5334361http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/0b668e8c-b11e-4693-a116-ab32d5334361Venkatesan Chttp://social.msdn.microsoft.com/Profile/en-US/?user=Venkatesan%20CSQL Server Express for commerical useMy client having Sql Server 2005 with license, Now they want 25 users  to use as  client machine  in their network using the Sql server express edition free use in the client machine.<br> <br> Can anyone help in the issue??<br> <br> Thanks in advance.<br> <br> <br> with regards,<br> C. Venkatesan. Thu, 11 Dec 2008 06:21:30 Z2008-12-15T20:18:15Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/6b7108f2-dbc8-4b74-8cf9-306fe1877d03http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/6b7108f2-dbc8-4b74-8cf9-306fe1877d03sorgfelthttp://social.msdn.microsoft.com/Profile/en-US/?user=sorgfeltn/a  <p>n/a</p>Wed, 12 Nov 2008 20:54:25 Z2008-11-14T20:06:45Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/de0156c4-bf22-4c90-af76-5d7d1525f091http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/de0156c4-bf22-4c90-af76-5d7d1525f091M2Mhttp://social.msdn.microsoft.com/Profile/en-US/?user=M2MPDA database questionsI am developing a small database for a PDA using VS 2008.<br>I am using a Data Grid to display the values in the database, one is date and one is currency<br>I have the following :<br>TestDataTable(Which contains columns,  Date, Provider, Amount Paid)<br>Herer are my 2 questions:<br><br>1). how do i format the &quot;Amount Paid&quot; column at runtime so when the user views the data it is formatted as currency????<br><br>2). I have generated data forms to edit, new and modify the data in the database(Test1.sdf)<br>I have a save button when the user selects it how do i save the changes made to the data base????????<br><br>ANy help would be apprecitated<br><br>m2m<br><br>ThanksWed, 12 Nov 2008 19:30:35 Z2008-11-17T22:57:48Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/70ad8e2a-7342-4a3b-a77d-1188384d51d3http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/70ad8e2a-7342-4a3b-a77d-1188384d51d3fairyLiquidhttp://social.msdn.microsoft.com/Profile/en-US/?user=fairyLiquidCannot open database "AdventureWorks" requested by the login. The login failed. received in web service I have downloaded SQL Server 2005 Express addition and I am trying to connect to the Adventure Works database via a web service written in c#  using VS2005.  I can connect to the database through VS2005 and I know it is using my windows account.<br><br>The confusion I am having is how you find out what ASPNET account is being used to access the webservice.<br><br>I Thought it was the same as the windows account, but on reading it  uses the ANONYMOUS users...I believe, but how do you check this?<br>Also how do you set the ASPNET account to have read write permissions on the ADVENTUREWORKS database?<br><br>The database and webservice reside on the same machine.<br><br>I have used the following code to try and connect to the database<br><br><font size=2> <p></font><font style="font-size:10px"><font style="font-size:10px"><font face="MS San Serif"><font style="font-size:11px"><font style="font-size:11px" color="#0000ff"><font style="font-size:11px" color="#0000ff">public</font></font> <font style="font-size:11px" color="#0000ff"><font style="font-size:11px" color="#0000ff">string</font></font></font></font></font></font><font size=2><font style="font-size:11px" face="MS San Serif"> GetVendorList()</font></p> <p><font style="font-size:11px" face="MS San Serif">{</font></p> <p></font><font color="#008080" size=2><font style="font-size:11px" face="MS San Serif" color="#008080">SqlConnection</font></font><font size=2><font style="font-size:11px" face="MS San Serif"> sqlConn;</font></p> <p></font><font color="#008080" size=2><font style="font-size:11px" face="MS San Serif" color="#008080">XmlReader</font></font><font size=2><font style="font-size:11px" face="MS San Serif"> rdr;</font></p> <p></font><font style="font-size:10px"><font style="font-size:10px"><font face="MS San Serif"><font style="font-size:11px"><font style="font-size:11px" color="#0000ff"><font style="font-size:11px" color="#0000ff">string</font></font><font style="font-size:11px"> ret = </font><font style="font-size:11px" color="#800000"><font style="font-size:11px" color="#800000">&quot;&quot;</font></font></font></font></font></font><font size=2><font style="font-size:11px" face="MS San Serif">;</font></p> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2><font style="font-size:11px" face="MS San Serif">try</font></p></font></font><font size=2> <p><font style="font-size:11px" face="MS San Serif">{</font></p> <p></font><font color="#008000" size=2><font color="#008000" size=2><font style="font-size:11px" face="MS San Serif">//Open connection to SQL Express</font></p></font></font><font size=2> <p></font><font style="font-size:10px"><font style="font-size:10px"><font face="MS San Serif"><font style="font-size:11px"><font style="font-size:11px" color="#0000ff"><font style="font-size:11px" color="#0000ff">string</font></font><font style="font-size:11px"> connString = </font><font style="font-size:11px" color="#800000"><font style="font-size:11px" color="#800000">@&quot;server=.\sqlexpress;Integrated Security=SSPI;initial catalog=AdventureWorks&quot;</font></font></font></font></font></font><font size=2><font style="font-size:11px" face="MS San Serif">;</font></font><font color="#008000" size=2><font color="#008000" size=2></p></font></font><font size=2> <p><font style="font-size:11px" face="MS San Serif">sqlConn = </font></font><font style="font-size:10px"><font style="font-size:10px"><font face="MS San Serif"><font style="font-size:11px"><font style="font-size:11px" color="#0000ff"><font style="font-size:11px" color="#0000ff">new</font></font> <font style="font-size:11px" color="#008080"><font style="font-size:11px" color="#008080">SqlConnection</font></font></font></font></font></font><font size=2><font style="font-size:11px" face="MS San Serif">(connString);</font></p> <p><font style="font-size:11px" face="MS San Serif">sqlConn.Open();</font></p> <p></font><font color="#008000" size=2><font color="#008000" size=2><font style="font-size:11px" face="MS San Serif">//Return XML data the FOR XML AUTO clause</font></p></font></font><font size=2> <p></font><font style="font-size:10px"><font style="font-size:10px"><font face="MS San Serif"><font style="font-size:11px"><font style="font-size:11px" color="#0000ff"><font style="font-size:11px" color="#0000ff">string</font></font><font style="font-size:11px"> sqlString = </font><font style="font-size:11px" color="#800000"><font style="font-size:11px" color="#800000">&quot;SELECT VendorId, AccountNumber, Name, CreditRating &quot;</font></font></font></font></font></font><font size=2><font style="font-size:11px" face="MS San Serif"> +</font></p> <p></font><font color="#800000" size=2><font style="font-size:11px" face="MS San Serif" color="#800000">&quot;FROM Purchasing.Vendor &quot;</font></font><font size=2><font style="font-size:11px" face="MS San Serif"> +</font></p> <p></font><font color="#800000" size=2><font style="font-size:11px" face="MS San Serif" color="#800000">&quot;WHERE ActiveFlag = 1 &quot;</font></font><font size=2><font style="font-size:11px" face="MS San Serif"> +</font></p> <p></font><font color="#800000" size=2><font style="font-size:11px" face="MS San Serif" color="#800000">&quot;ORDER BY Name &quot;</font></font><font size=2><font style="font-size:11px" face="MS San Serif"> +</font></p> <p></font><font color="#800000" size=2><font style="font-size:11px" face="MS San Serif" color="#800000">&quot;FOR XML AUTO &quot;</font></font><font size=2><font style="font-size:11px" face="MS San Serif">;</font></p> <p></font><font style="font-size:10px"><font style="font-size:10px"><font face="MS San Serif"><font style="font-size:11px"><font style="font-size:11px" color="#008080"><font style="font-size:11px" color="#008080">SqlCommand</font></font><font style="font-size:11px"> command = </font><font style="font-size:11px" color="#0000ff"><font style="font-size:11px" color="#0000ff">new</font></font> <font style="font-size:11px" color="#008080"><font style="font-size:11px" color="#008080">SqlCommand</font></font></font></font></font></font><font size=2><font style="font-size:11px" face="MS San Serif">(sqlString, sqlConn);</font></p> <p></font><font color="#008000" size=2><font color="#008000" size=2><font style="font-size:11px" face="MS San Serif">//Execute SQL query and return XML to XmlReader</font></p></font></font><font size=2> <p><font style="font-size:11px" face="MS San Serif">rdr = command.ExecuteXmlReader();</font></p> <p><font style="font-size:11px" face="MS San Serif">rdr.Read();</font></p> <p></font><font style="font-size:10px"><font style="font-size:10px"><font face="MS San Serif"><font style="font-size:11px"><font style="font-size:11px" color="#0000ff"><font style="font-size:11px" color="#0000ff">while</font></font><font style="font-size:11px"> (rdr.ReadState != </font><font style="font-size:11px" color="#008080"><font style="font-size:11px" color="#008080">ReadState</font></font></font></font></font></font><font size=2><font style="font-size:11px" face="MS San Serif">.EndOfFile)</font></p> <p><font style="font-size:11px" face="MS San Serif">{</font></p> <p><font style="font-size:11px" face="MS San Serif">ret += rdr.ReadOuterXml();</font></p> <p><font style="font-size:11px" face="MS San Serif">}</font></p> <p></font><font color="#008000" size=2><font color="#008000" size=2><font style="font-size:11px" face="MS San Serif">//Add a root element</font></p></font></font><font size=2> <p><font style="font-size:11px" face="MS San Serif">ret = </font></font><font style="font-size:10px"><font style="font-size:10px"><font face="MS San Serif"><font style="font-size:11px"><font style="font-size:11px" color="#800000"><font style="font-size:11px" color="#800000">&quot;&lt;vendors&gt; &quot;</font></font><font style="font-size:11px"> + ret + </font><font style="font-size:11px" color="#800000"><font style="font-size:11px" color="#800000">&quot;&lt;/vendors&gt;&quot;</font></font></font></font></font></font><font size=2><font style="font-size:11px" face="MS San Serif">;</font></p> <p><font style="font-size:11px" face="MS San Serif">sqlConn.Close();</font></p> <p><font style="font-size:11px" face="MS San Serif">rdr.Close();</font></p> <p><font style="font-size:11px" face="MS San Serif">}</font></p> <p></font><font style="font-size:10px"><font style="font-size:10px"><font face="MS San Serif"><font style="font-size:11px"><font style="font-size:11px" color="#0000ff"><font style="font-size:11px" color="#0000ff">catch</font></font><font style="font-size:11px"> (</font><font style="font-size:11px" color="#008080"><font style="font-size:11px" color="#008080">Exception</font></font></font></font></font></font><font size=2><font style="font-size:11px" face="MS San Serif"> ex)</font></p> <p><font style="font-size:11px" face="MS San Serif">{</font></p> <p></font><font style="font-size:10px"><font style="font-size:10px"><font face="MS San Serif"><font style="font-size:11px"><font style="font-size:11px" color="#0000ff"><font style="font-size:11px" color="#0000ff">throw</font></font> <font style="font-size:11px" color="#0000ff"><font style="font-size:11px" color="#0000ff">new</font></font> <font style="font-size:11px" color="#008080"><font style="font-size:11px" color="#008080">Exception</font></font></font></font></font></font><font size=2><font style="font-size:11px" face="MS San Serif">(ex.Message);</font></p> <p><font style="font-size:11px" face="MS San Serif">}</font></p> <p></font><font color="#0000ff" size=2><font style="font-size:11px" face="MS San Serif" color="#0000ff">return</font></font><font size=2><font style="font-size:11px" face="MS San Serif"> ret;</font></p> <p><font style="font-size:11px" face="MS San Serif">}</font></p> <p><font style="font-size:11px" face="MS San Serif"></font></p></font><br><br>I keep getting the following error on the sqlConn.Open();<br><strong>&quot;Cannot open database &quot;AdventureWorks&quot; requested by the login. The login failed.&quot;</strong><br><br>I have tried to set the sa user in SQL Server Management Studio Express to public but do not really know what I am doing.  I have searched the web for 4 days now and cannot find any info for a step by step check in SQL Server Management Studio Express. <br><br>Any help would be great as I am a beginner to C# and to SQL Server Express.<br><br>Thanks.<br>Tue, 11 Nov 2008 17:53:21 Z2008-11-17T22:56:14Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/1af91cce-235f-498d-98ca-9572a9f30339http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/1af91cce-235f-498d-98ca-9572a9f30339Clayton Cowarthttp://social.msdn.microsoft.com/Profile/en-US/?user=Clayton%20CowartIIS to SQL authenticationHi, <br><br>We have a Internal Web App with a Sql back end. We want to be able to authenticate each user, that accesses the web site, to Sql. So in other words we dont want the Web site to use a Service account or a hard coded login in the code to connect to SQL. <br><br>Any ideas?<br><br>CC<hr size="1" align="left" width="25%">ClaytonMon, 27 Oct 2008 19:55:45 Z2008-11-08T00:54:05Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/8f8c7720-b7c4-4d71-a073-5281bcb4280fhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/8f8c7720-b7c4-4d71-a073-5281bcb4280fthussjackhttp://social.msdn.microsoft.com/Profile/en-US/?user=thussjackPerformance Issues - ran DBCC Perf (waitstats) Hi, <br><br>I have a slow performing database server and am in a process to get to the root cause of it. My front end is MS Access using Active X scripts to connect to the SQL Server 2000. Meantime I have ran DBCC Perf (waitstats) as found in MSDN and have a hard time to interprit the results. These are my results from the query. Your help is greatly appreciated. Thanks.<br><br>MISCELLANEOUS 3091 0 0<br>LCK_M_SCH_S 0 0 0<br>LCK_M_SCH_M 4 2093094 0<br>LCK_M_S 31 3355794 0<br>LCK_M_U 0 0 0<br>LCK_M_X 0 0 0<br>LCK_M_IS 71 3219717 0<br>LCK_M_IU 0 0 0<br>LCK_M_IX 1 266 0<br>LCK_M_SIU 0 0 0<br>LCK_M_SIX 0 0 0<br>LCK_M_UIX 0 0 0<br>LCK_M_BU 0 0 0<br>LCK_M_RS_S 0 0 0<br>LCK_M_RS_U 0 0 0<br>LCK_M_RIn_NL 0 0 0<br>LCK_M_RIn_S 0 0 0<br>LCK_M_RIn_U 0 0 0<br>LCK_M_RIn_X 0 0 0<br>LCK_M_RX_S 0 0 0<br>LCK_M_RX_U 0 0 0<br>LCK_M_RX_X 0 0 0<br>SLEEP 1831478 1.754027E+09 1.747461E+09<br>IO_COMPLETION 6018 20773 0<br>ASYNC_IO_COMPLETION 287 782 0<br>RESOURCE_SEMAPHORE 0 0 0<br>DTC 0 0 0<br>OLEDB 1.749501E+07 2.186584E+09 2.988575E+08<br>FAILPOINT 0 0 0<br>RESOURCE_QUEUE 3473702 2.759905E+08 1.696084E+09<br>ASYNC_DISKPOOL_LOCK 4922 0 0<br>UMS_THREAD 0 0 0<br>PIPELINE_INDEX_STAT 0 0 0<br>PIPELINE_LOG 0 0 0<br>PIPELINE_VLM 0 0 0<br>WRITELOG 1588594 6211059 44069<br>PSS_CHILD 0 0 0<br>EXCHANGE 222 79 15<br>XCB 0 0 0<br>DBTABLE 1 6063 0<br>EC 0 0 0<br>TEMPOBJ 0 0 0<br>XACTLOCKINFO 0 0 0<br>LOGMGR 0 0 0<br>CMEMTHREAD 6831 142 127<br>CXPACKET 297985 6989033 45611<br>PAGESUPP 6524 465 78<br>SHUTDOWN 0 0 0<br>WAITFOR 0 0 0<br>CURSOR 0 0 0<br>EXECSYNC 2 0 0<br>LATCH_NL 0 0 0<br>LATCH_KP 0 0 0<br>LATCH_SH 19 15000 0<br>LATCH_UP 2 0 0<br>LATCH_EX 5519302 706545 79562<br>LATCH_DT 0 0 0<br>PAGELATCH_NL 0 0 0<br>PAGELATCH_KP 0 0 0<br>PAGELATCH_SH 6806 468 0<br>PAGELATCH_UP 84417 768 408<br>PAGELATCH_EX 4732 7599 93<br>PAGELATCH_DT 0 0 0<br>PAGEIOLATCH_NL 0 0 0<br>PAGEIOLATCH_KP 0 0 0<br>PAGEIOLATCH_SH 186606 400507 577<br>PAGEIOLATCH_UP 16115 135191 124<br>PAGEIOLATCH_EX 5804 43703 16<br>PAGEIOLATCH_DT 0 0 0<br>TRAN_MARK_NL 0 0 0<br>TRAN_MARK_KP 0 0 0<br>TRAN_MARK_SH 0 0 0<br>TRAN_MARK_UP 0 0 0<br>TRAN_MARK_EX 0 0 0<br>TRAN_MARK_DT 0 0 0<br>NETWORKIO 1177345 1.059683E+09 0<br>Total 3.171592E+07 5.299492E+09 3.742573E+09Tue, 28 Oct 2008 16:31:58 Z2008-11-08T00:52:24Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/52bb7b67-52a4-423a-b8f3-645f61f6d000http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/52bb7b67-52a4-423a-b8f3-645f61f6d000PRD115http://social.msdn.microsoft.com/Profile/en-US/?user=PRD115Access queries/SQL -- Multiple search Hi<br><br>I am trying to create a query / SQL that will find duplicate rows that have any 2 of the 6 fields matching.<br><br>ie: Row 1 =   1, 2, 3, 4, 5, 6<br>     Row 2 =   2, 3, 10, 11, 12, 13<br><br>The query should find 2, 3 as duplicates even though they aren't in the same fields.... so long as they match, that's all that matters.<br><br>Thanks for your helpFri, 07 Nov 2008 01:56:32 Z2008-11-17T21:58:19Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/276a8e4a-cba7-45e3-a52d-5f0247bf3eb4http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/276a8e4a-cba7-45e3-a52d-5f0247bf3eb4Advait Supnekar 1http://social.msdn.microsoft.com/Profile/en-US/?user=Advait%20Supnekar%201Sample quickstart code Hello<br><br>I am very new to this, and want to start exploring how to use these protocols.  I ran through the PDF documents at <a href="http://go.microsoft.com/fwlink/?LinkId=120223">http://go.microsoft.com/fwlink/?LinkId=120223</a> but what I am looking for is some quickstart code...<br><br>I know the documentation will be very helpful from the point of view of details and design, but for a start I am really looking for some code samples, or &quot;quickie&quot; code.<br><br>Ok, I am not looking for SQL Server protocols in particular, but for that matter any &quot;quickstart&quot; code for any of these Microsoft open protocols, which will give me a headstart!!<br><br>Can someone please point me in that direction?<br><br>Thanks a lot!!<br>Advait SupnekarWed, 22 Oct 2008 07:51:58 Z2008-11-10T06:37:57Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/cb3791ec-8cda-481d-963b-18a9159554dbhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/cb3791ec-8cda-481d-963b-18a9159554dbsimosihttp://social.msdn.microsoft.com/Profile/en-US/?user=simosiwhy this happend?hi all,<div>guys I used a table in SQL Server which has a dataType of Char not NChar.</div><div>and i store unicode characters in this field.when i ported my database to the host .all of the data in this field turned to &quot;?&quot; sign.what is the problem?</div><hr size="1" align="left" width="25%">Brainstorm your Brain and find solution,if no result stuck to Brainstormer.Sun, 26 Oct 2008 08:14:32 Z2008-10-28T22:17:11Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/22bc9b56-033f-4982-bb10-dca878f6f384http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/22bc9b56-033f-4982-bb10-dca878f6f384flaunthttp://social.msdn.microsoft.com/Profile/en-US/?user=flauntDowngrading from SQL Server 2008 to 2005I have installed TFS 2008 along with SQL Server 2008.  I need to be utilize SQL Server 2005 on this same machine for the build process.  Is it possible to downgrade the SQL Server version to 2005 or would I just be better off starting from scratch?  <br><br>I believe there are some incompatibilities between the two versions of SQL Server that would make it impossible to run both side by side but I may be wrong about that.  Any guidance would be appreciated.<br><br><br> Thu, 16 Oct 2008 03:42:55 Z2008-10-28T22:11:02Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/913804f1-4288-4b57-b239-09e054a61db2http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/913804f1-4288-4b57-b239-09e054a61db2Chris Mullaneyhttp://social.msdn.microsoft.com/Profile/en-US/?user=Chris%20MullaneyTechnical documentation links don't resolve in Adobe Reader 9  <p style="margin:0in 0in 0pt 0.25in"><span style="font-size:11pt;font-family:'Calibri','sans-serif'">This is a change introduced by Adobe, which has altered the default setting for view mode in Adobe Reader 9. In order to access links, users need to change their settings so that the document is not in view mode.  In Adobe Reader 9, go to the <b>Edit</b> menu and click <b>Preferences</b>. In the <b>Categories</b> list, click <b>Documents</b>. Under <b>PDF/A View Mode</b>, change the selection from <b>Only for PDF/A documents</b> to <b>Never</b>, and click <b>OK</b>. </span></p> <p style="margin:0in 0in 0pt 0.25in"><span style="font-size:11pt;font-family:'Calibri','sans-serif'"> </span></p> <p style="margin:0in 0in 0pt 0.25in"><span style="font-size:11pt;font-family:'Calibri','sans-serif'">Additional details  on changing the setting can be located via the Adobe help site: <a href="http://help.adobe.com/en_US/Acrobat/9.0/Standard/WS3E0E8467-B787-4020-A1D3-6BC762A42DF2.w.html"><span style="color:windowtext">http://help.adobe.com/en_US/Acrobat/9.0/Standard/WS3E0E8467-B787-4020-A1D3-6BC762A42DF2.w.html</span></a></span><i></i></p>Mon, 20 Oct 2008 19:48:42 Z2008-10-20T19:49:00Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/35249636-faaf-43e0-b341-7fa56c9e49edhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/35249636-faaf-43e0-b341-7fa56c9e49edSumit.Singhalhttp://social.msdn.microsoft.com/Profile/en-US/?user=Sumit.SinghalUsing SqlServer2008Hi,<br>    whenever i try to use catalogs with FREETEXT in sqlserver2008 I get error as:<br><br><font size=1> <p><strong>SQL Server encountered error 0x80070422 while communicating with full-text filter daemon host (FDHost) process. Make sure that the FDHost process is running. To re-start the FDHost process, run the sp_fulltext_service 'restart_all_fdhosts' command or restart the SQL Server instance.<br><br><br></strong>Please provide the solution to resolve it.</p></font>Sat, 18 Oct 2008 07:35:14 Z2008-10-21T22:44:33Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/61e6a6f5-99b5-461c-bf82-489b9144bcd8http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/61e6a6f5-99b5-461c-bf82-489b9144bcd8Monideepahttp://social.msdn.microsoft.com/Profile/en-US/?user=MonideepaSQL Server - comma separated values into a single columnHi,<br> <br> I'm using a stored proc to return multiple rows from a table.<br> I need to store this list of values as comma separated values in a single column .<br> I do not wish to iterate through the rows to generate a comma separated value.<br> Could you suggest an alternate option to do the same.<br> <br> Thanks,<br> Monideepa Tue, 14 Oct 2008 14:53:00 Z2008-10-21T22:43:41Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/bb5bd452-1f92-4fbf-bbbb-2811045a156fhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/bb5bd452-1f92-4fbf-bbbb-2811045a156fAkhi4Akhihttp://social.msdn.microsoft.com/Profile/en-US/?user=Akhi4AkhiCreating TRIGGERS Hi,<br><br>    I want to create a trigger which would drop a database when a row of another database is deleted. I am using MySQL database. Currently i am using the trigger as given below. But its not working.<br><br>DELIMITER $$<br>CREATE TRIGGER deletePData<br>AFTER DELETE ON `ProjectDB`.`Project_Name_Table`<br>FOR EACH ROW BEGIN<br>  DELETE DATABASE OLD.Project_Name_Column;<br>END;<br>$$<br><br><br>plz someone give me a solution. <br><br>Solution for SQL Server will also be OK<br><br><br>Thanks &amp; Regards<br>Akhil.N.P<hr size="1" align="left" width="25%">Akhil.N.PTue, 14 Oct 2008 05:10:25 Z2008-10-15T03:09:45Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/58d7260c-9e9d-47b1-b498-9cb1e7c1ac5fhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/58d7260c-9e9d-47b1-b498-9cb1e7c1ac5fDemonakoshttp://social.msdn.microsoft.com/Profile/en-US/?user=Demonakoshow to add a patern to all data in a tablehello,<br>i want to rename all data in a table from  whatever to whatever_new (add _new to all entries) with one command<br><br>how?<br> <hr size="1" align="left" width="25%">Dimitris KoutsoukosSun, 12 Oct 2008 11:17:15 Z2008-10-14T05:12:26Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/f5fd2b72-01d6-43c6-93f5-2a7ebe584a87http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/f5fd2b72-01d6-43c6-93f5-2a7ebe584a87ArildGhttp://social.msdn.microsoft.com/Profile/en-US/?user=ArildGDate problem I'm trying to use <font size=2>System.DateTime and this works when checking it in MsgBox(DateValue(Now)) looks  as it should like this &quot;10.10.2008 02.55.00&quot;, but an error that is showing is &quot;Syntaksfeil i dato i spørreuttrykket #12.10.2008 02:55:00#&quot; and pop up in this code:<font size=2> <p><u><strong>Con.Execute(</strong></u></font><u><strong><font color="#a31515" size=2><font color="#a31515" size=2>&quot;update contacts set DT=#&quot;</font></font><font size=2> &amp; dt &amp; </font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;# where RecordNo=&quot;</font></font><font size=2> &amp; </font><font color="#0000ff" size=2><font color="#0000ff" size=2>CInt</font></font></strong></u><font size=2><u><strong>(ListView1.Items(0).Text), </strong></u><u><strong>ADODB.CommandTypeEnum.adCmdText + ADODB.ExecuteOptionEnum.adExecuteNoRecords)<br></strong></u></p></font></font> <p><font color="#0000ff"><font color="#0000ff" size=2>*****************<br><br>Private</font></font> <font color="#0000ff" size=2><font color="#0000ff" size=2>Sub</font></font><font size=2> Button2_Click(</font><font color="#0000ff" size=2><font color="#0000ff" size=2>ByVal</font></font><font size=2> sender </font><font color="#0000ff" size=2><font color="#0000ff" size=2>As</font></font><font size=2> System.Object, </font><font color="#0000ff" size=2><font color="#0000ff" size=2>ByVal</font></font><font size=2> e </font><font color="#0000ff" size=2><font color="#0000ff" size=2>As</font></font><font size=2> System.EventArgs) </font><font color="#0000ff" size=2><font color="#0000ff" size=2>Handles</font></font><font size=2> Button2.Click</p> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>Call</font></font><font size=2> initWeekDays()</p> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>Dim</font></font><font size=2> i, intIndex </font><font color="#0000ff" size=2><font color="#0000ff" size=2>As</font></font> <font color="#0000ff" size=2><font color="#0000ff" size=2>Integer</p></font></font><font size=2> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>Dim</font></font><font size=2> dt </font><font color="#0000ff" size=2><font color="#0000ff" size=2>As</font></font><font size=2> System.DateTime</font><font color="#a31515" size=2><font color="#a31515" size=2></p></font></font><font size=2> <p></font><font color="#008000" size=2><font color="#008000" size=2>'dt = &quot;#13 09 2007 21:22:23#&quot;</p></font></font><font size=2> <p>dt.ToString(</font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;dd/MM/yyyy&quot;</font></font><font size=2>)</p> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>Dim</font></font><font size=2> ci </font><font color="#0000ff" size=2><font color="#0000ff" size=2>As</font></font> <font color="#0000ff" size=2><font color="#0000ff" size=2>New</font></font><font size=2> CultureInfo(</font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;nn-NO&quot;</font></font><font size=2>)</p> <p>Thread.CurrentThread.CurrentCulture = </font><font color="#0000ff" size=2><font color="#0000ff" size=2>New</font></font><font size=2> CultureInfo(</font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;nn-NO&quot;</font></font><font size=2>)</p> <p>Console.WriteLine(dt.ToString(</font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;d&quot;</font></font><font size=2>, ci))</p> <p>dt.ToLocalTime()</p> <p></font><font color="#008000" size=2><font color="#008000" size=2>'dt = DateTime.Now</p></font></font><font size=2> <p>MsgBox(DateValue(Now))</p><br><br> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>For</font></font><font size=2> i = 0 </font><font color="#0000ff" size=2><font color="#0000ff" size=2>To</font></font><font size=2> ListView1.Items.Count - 1</p> <p>intIndex = Array.IndexOf(RLRno, </font><font color="#0000ff" size=2><font color="#0000ff" size=2>CInt</font></font><font size=2>(ListView1.Items(0).Text))</p> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>If</font></font> <font color="#0000ff" size=2><font color="#0000ff" size=2>Not</font></font><font size=2> intIndex = -1 </font><font color="#0000ff" size=2><font color="#0000ff" size=2>Then</p></font></font><font size=2> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>If</font></font> <font color="#0000ff" size=2><font color="#0000ff" size=2>CBool</font></font><font size=2>(RLArray(intIndex, 5)) = </font><font color="#0000ff" size=2><font color="#0000ff" size=2>True</font></font> <font color="#0000ff" size=2><font color="#0000ff" size=2>Then</font></font> <font color="#008000" size=2><font color="#008000" size=2>'daily</p></font></font><font size=2> <p>dt = </font><font color="#0000ff" size=2><font color="#0000ff" size=2>CDate</font></font><font size=2>(RLArray(intIndex, 1))</p> <p>dt = DateValue(Now) &amp; </font><font color="#a31515" size=2><font color="#a31515" size=2>&quot; &quot;</font></font><font size=2> &amp; TimeValue(dt)</p> <p>dt = DateAdd(DateInterval.Day, 2, dt)</p> <p></font><font color="#008000" size=2><font color="#008000" size=2>'MessageBox.Show(&quot;daily : &quot; &amp; dt)</p></font></font><font size=2> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>End</font></font> <font color="#0000ff" size=2><font color="#0000ff" size=2>If</p></font></font><font size=2> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>If</font></font> <font color="#0000ff" size=2><font color="#0000ff" size=2>CBool</font></font><font size=2>(RLArray(intIndex, 6)) = </font><font color="#0000ff" size=2><font color="#0000ff" size=2>True</font></font> <font color="#0000ff" size=2><font color="#0000ff" size=2>Then</font></font> <font color="#008000" size=2><font color="#008000" size=2>'weekly</p></font></font><font size=2> <p>dt = </font><font color="#0000ff" size=2><font color="#0000ff" size=2>CDate</font></font><font size=2>(RLArray(intIndex, 1))</p> <p>dt = </font><font color="#0000ff" size=2><font color="#0000ff" size=2>CDate</font></font><font size=2>(weekDays(dt.DayOfWeek) &amp; </font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;/&quot;</font></font><font size=2> &amp; Month(Now) &amp; </font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;/&quot;</font></font><font size=2> &amp; Year(Now) &amp; </font><font color="#a31515" size=2><font color="#a31515" size=2>&quot; &quot;</font></font><font size=2> &amp; TimeValue(dt))</p> <p>dt = DateAdd(DateInterval.Weekday, 7, dt)</p> <p></font><font color="#008000" size=2><font color="#008000" size=2>'MessageBox.Show(&quot;weekly : &quot; &amp; CStr(dt))</p></font></font><font size=2> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>End</font></font> <font color="#0000ff" size=2><font color="#0000ff" size=2>If</p></font></font><font size=2> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>If</font></font> <font color="#0000ff" size=2><font color="#0000ff" size=2>CBool</font></font><font size=2>(RLArray(intIndex, 7)) = </font><font color="#0000ff" size=2><font color="#0000ff" size=2>True</font></font> <font color="#0000ff" size=2><font color="#0000ff" size=2>Then</font></font> <font color="#008000" size=2><font color="#008000" size=2>'monthly</p></font></font><font size=2> <p>dt = </font><font color="#0000ff" size=2><font color="#0000ff" size=2>CDate</font></font><font size=2>(RLArray(intIndex, 1))</p> <p>dt = </font><font color="#0000ff" size=2><font color="#0000ff" size=2>CDate</font></font><font size=2>(Day(dt) &amp; </font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;/&quot;</font></font><font size=2> &amp; Month(dt) &amp; </font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;/&quot;</font></font><font size=2> &amp; Year(Now) &amp; </font><font color="#a31515" size=2><font color="#a31515" size=2>&quot; &quot;</font></font><font size=2> &amp; TimeValue(dt))</p> <p>dt = DateAdd(DateInterval.Month, 1, dt)</p> <p></font><font color="#008000" size=2><font color="#008000" size=2>'MessageBox.Show(&quot;monthly : &quot; &amp; dt)</p></font></font><font size=2> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>End</font></font> <font color="#0000ff" size=2><font color="#0000ff" size=2>If</p></font></font><font size=2> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>If</font></font> <font color="#0000ff" size=2><font color="#0000ff" size=2>CBool</font></font><font size=2>(RLArray(intIndex, 8)) = </font><font color="#0000ff" size=2><font color="#0000ff" size=2>True</font></font> <font color="#0000ff" size=2><font color="#0000ff" size=2>Then</font></font> <font color="#008000" size=2><font color="#008000" size=2>'yearly</p></font></font><font size=2> <p>dt = </font><font color="#0000ff" size=2><font color="#0000ff" size=2>CDate</font></font><font size=2>(RLArray(intIndex, 1))</p> <p>dt = </font><font color="#0000ff" size=2><font color="#0000ff" size=2>CDate</font></font><font size=2>(Day(dt) &amp; </font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;/&quot;</font></font><font size=2> &amp; Month(dt) &amp; </font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;/&quot;</font></font><font size=2> &amp; Year(Now)) </font><font color="#008000" size=2><font color="#008000" size=2>'&amp; &quot; &quot; &amp; TimeValue(dt))</p></font></font><font size=2> <p>dt = DateAdd(DateInterval.Year, 1, dt)</p> <p></font><font color="#008000" size=2><font color="#008000" size=2>'MessageBox.Show(&quot;yearly : &quot; &amp; dt)</p></font></font><font size=2> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>End</font></font> <font color="#0000ff" size=2><font color="#0000ff" size=2>If</p></font></font><font size=2> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>End</font></font> <font color="#0000ff" size=2><font color="#0000ff" size=2>If</p><br><br></font></font><font size=2> <p>Con.Execute(</font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;update contacts set DT=#&quot;</font></font><font size=2> &amp; dt &amp; </font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;# where RecordNo=&quot;</font></font><font size=2> &amp; </font><font color="#0000ff" size=2><font color="#0000ff" size=2>CInt</font></font><font size=2>(ListView1.Items(0).Text), _</p> <p>ADODB.CommandTypeEnum.adCmdText + ADODB.ExecuteOptionEnum.adExecuteNoRecords)</p> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>Call</font></font><font size=2> InitReminderList() : </font><font color="#0000ff" size=2><font color="#0000ff" size=2>Call</font></font><font size=2> showReminders()</p> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>Next</p></font></font><font size=2> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>End</font></font> <font color="#0000ff" size=2><font color="#0000ff" size=2>Sub</p></font></font><hr size="1" align="left" width="25%">Visual Studio 2008 Microsoft Visual Basic 2008 OwnerFri, 10 Oct 2008 01:15:48 Z2009-05-06T08:27:40Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/7a13940e-92ef-424c-9b62-bf1943f2ab53http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/7a13940e-92ef-424c-9b62-bf1943f2ab53redcodeshttp://social.msdn.microsoft.com/Profile/en-US/?user=redcodesConnect to ms SQL with PHP<span id=intelliTxt>hi ,<br> I have 2 servers one of them is web server other is database server...<br> my database server ip is 10.0.0.1<br> I want to connect from web server to database...<br> I wrote these <br> $username=&quot;admin&quot;;<br> $password=&quot;1234&quot;;<br> $Server_Name=&quot;10.0.0.1:1433&quot;;<br> $cs = mssql_connect ( $Server_Name,$username,$password)<br> or die ( 'Can not connect to server' );<br> but I could not connect <br> it says that <br> <br> Warning: mssql_connect() [function.mssql-connect]: Unable to connect to server: 10.0.0.1:1433 in C:\xampp\htdocs\deneme\connect_db.php on line 18<br> Can not connect to server<br> <br> where do I made a mistake??...<br> <br> please help me... <img src="http://images.devshed.com/fds/smilies/banghead.gif" alt="" title=LogChomper class=inlineimg border=0></span> Thu, 09 Oct 2008 11:19:22 Z2008-10-14T22:46:05Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/d9f4bde0-04d1-4198-991a-377b2831a46ehttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/d9f4bde0-04d1-4198-991a-377b2831a46eLe Thuanhttp://social.msdn.microsoft.com/Profile/en-US/?user=Le%20ThuanASP.Net 2005 with SQL Server 2000 I use ASP.Net 2005 with SQL Server 2000, when i run my web page http://localhost/mywebpage occur an error: <br><i><br>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: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)<br><br>But when i run it from Visual Studio .Net 2005 with http://localhost:1022/mywebpage , it's ok<br><br>Please help me!!</i>Wed, 08 Oct 2008 08:34:28 Z2008-10-09T11:50:09Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/cea8e358-77c3-4e52-af84-cd236231649ehttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/cea8e358-77c3-4e52-af84-cd236231649eNoeld1http://social.msdn.microsoft.com/Profile/en-US/?user=Noeld1is TDS specification going to be released ?Is MS planning to release TDS for SQL 2008 ?<br><br><br> Tue, 19 Aug 2008 14:13:22 Z2008-09-30T23:02:08Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/ec7d4e13-28b7-4c8c-bdcf-b610072f002fhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/ec7d4e13-28b7-4c8c-bdcf-b610072f002fNeda-Sharepoint Userhttp://social.msdn.microsoft.com/Profile/en-US/?user=Neda-Sharepoint%20User?ok<br>Mon, 29 Sep 2008 11:59:36 Z2008-09-30T22:06:51Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/15f9c26a-92df-432f-b5e0-1d36aab31201http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/15f9c26a-92df-432f-b5e0-1d36aab31201helloisehttp://social.msdn.microsoft.com/Profile/en-US/?user=helloiserebuilding a sqlexpress 2008 database  <table height="100%" cellspacing=0 cellpadding=0 width="100%" border=0> <tbody> <tr> <td valign=top></td></tr> <tr> <td valign=top height="100%"><font face="Verdana, Arial, Helvetica" color=midnightblue size=2><span class=spnMessageText id=msg>i changed the collation for sqlexpress 2008 and now have to rebuild the db. i have a command that uses the setup.exe. i only have SQLEXPR_x86_ENU installation file which i got off the microsoft site. how do i rebuild now???<br><br>thanks<br>helloise</span></font></td></tr></tbody></table>Thu, 25 Sep 2008 08:10:26 Z2008-09-30T22:06:38Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/d212fead-2329-45ec-b284-a54a44a2f16fhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/d212fead-2329-45ec-b284-a54a44a2f16fGM_PAS_08http://social.msdn.microsoft.com/Profile/en-US/?user=GM_PAS_08Round and Convert $ fields.<p>The statement and question is as follows:<br><br>I need to convert a number such as <font color="#6633ff"><strong>208135.832367</strong> <font color="#000000">to be represented as</font> <strong>$ 208,136.</strong> </font><font color="#000000">So I need to CONVERT ROUND. So far I have created the following statement that converts the field so it looks like this $ 208,135.83. The statement is: <br><br><span><font color="#000000">'$' + CONVERT(varchar(25), CONVERT(money, dbo.MSP_EpmTask_UserView.TaskBaseline0Cost, 1))</font><font color="#000000"> </font>AS TaskBaselineCost,<br><br>I am seeking for advice as to the best (or only) way to do the rounding and have a 0 decimal.<br><br>Any assistance will be greatly appreciated.<br><br>Thanks in advance <br><br>Geo<br></span></font></p><br>Tue, 23 Sep 2008 20:35:05 Z2008-09-30T22:06:23Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/935ed77b-b5c7-4228-ad95-c021264d5a75http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/935ed77b-b5c7-4228-ad95-c021264d5a75minoleghttp://social.msdn.microsoft.com/Profile/en-US/?user=minolegSQLServerException thown from getGeneratedKeysI am trying to use SQL Server 2008 with Java JDBC and I have trouble auto generate a key for a new inserted row.  Every time I am getting this:<br> <br> com.microsoft.sqlserver.jdbc.SQLServerException: The statement must be executed before any results can be obtained.<br> <div id=":at" class="ArwC7c ckChnd"><br> I tried with both MS drivers 1.2 and 2.0 and got the same result.  Same code works fine with SQL Server 2005 and JDBC driver 1.1.<br> </div> <br> Does anybody know what this issue is or what I am doing wrong?<br> <br> Thanks,<br> Oleg<br><br> Wed, 24 Sep 2008 18:02:03 Z2008-09-30T22:05:54Zhttp://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/1d45c9b5-29c7-4d4f-a8bd-51e817df3241http://social.msdn.microsoft.com/Forums/en-US/os_sqlserver/thread/1d45c9b5-29c7-4d4f-a8bd-51e817df3241kunal raihttp://social.msdn.microsoft.com/Profile/en-US/?user=kunal%20raihow to find that a column exist in the table from the query how to find that a column exist in the table from the Sql query in Sql2005?<hr size="1" align="left" width="25%">kunalMon, 22 Sep 2008 04:22:17 Z2008-09-23T14:13:58Z