MS SQL Server Questions
Posted in .NET on August 18th, 20071. What is a SQL Server Instance?
See the answer here
2. How to find the port number that an instance is listening to?
here
The SQL Server Networking Utility mentioned is svrnetcn.
1. What is a SQL Server Instance?
See the answer here
2. How to find the port number that an instance is listening to?
here
The SQL Server Networking Utility mentioned is svrnetcn.
Via Scott.
> csc /debug BuildFind.cs
Microsoft (R) Visual C# .NET Compiler version 7.10.6001.4
for Microsoft (R) .NET Framework version 1.1.4322
Copyright (C) Microsoft Corporation 2001-2002. All rights reserved.> BuildFind.exe BuildFind.exe
Run time Optimizer is enabled : False
Run time Tracking is enabled : True
BuildFind.exe is a DEBUG Build….> csc /o BuildFind.cs
Microsoft (R) Visual C# .NET Compiler version 7.10.6001.4
for Microsoft (R) .NET Framework version 1.1.4322
Copyright (C) Microsoft Corporation 2001-2002. All rights reserved.> BuildFind.exe BuildFind.exe
BuildFind.exe is a RELEASE Build….
The data access example shipped with the Microsoft enterprise library showed an example:
xcopy /C /I /R /Y “$(ProjectDir)dataConfiguration.config” “$(ProjectDir)$(OutDir).”
copy “$(ProjectDir)DataAccessQuickStart.exe.manifest” “$(ProjectDir)$(OutDir).”
where the options for xcopy are:
/C Continue copying even if an error occurs.
/I If in doubt always assume the destination is a folder
e.g. when the destination does not exist./R Overwrite read-only files.
/Y (Windows 2000 only) Suppress prompt to confirm overwriting a file.
may be preset in the COPYCMD env variable.
More detail of the xcopy command can be found here.
While looking at the samples for the Microsoft Enterprise Library for .Net, I found couple of useful scripts:
c:>\path\to\devenv.exe /nosplash /path/to/vss/solution/file
I have a NUnit solution containing test classes I need to open this solution from time to time. I configured an entry in my application launch using devenv command line switches. Now I just need to type something like “csharpunittest” to launch the unit test solution. Sweet.
I use these free tools as MS SQL Server replacement at home.