Viewing 15 posts - 106 through 120 (of 286 total)
You mean aliasing?
The SQL Server Configuration manager does the functionality of the SQL Cient Networking utility as well as the SQL Server Networking Utility and Services manager.
It's an mmc snap-in...
March 20, 2006 at 7:17 am
Edit and run this:
CREATE DATABASE AdventureWorks
ON (FILENAME = 'c:\whateveryourpathishere\AdventureWorks.mdf')
FOR ATTACH
March 20, 2006 at 7:12 am
Exnted stored procedures are the old way - managed code and CLR integration is the new way.
If your old processes use xp_cmdshell you should instead write an assembly to do...
March 20, 2006 at 6:01 am
Basically you either need to format the data better before you try to import it or import it all and play with it afterwards.
I'd go with the first option -...
March 20, 2006 at 5:50 am
Sure - your confusion lies in that this diagram shows the foreign key relationships, they're not all primary keys.
March 20, 2006 at 5:30 am
There's a jumble of info in your post, perhaps by going through each issue you can get to a simple solution.
Your problem is that you want a simple procedure for...
March 20, 2006 at 4:54 am
Before it rolls back you should have the option to see the related issue.
March 20, 2006 at 4:17 am
Yes - Don't.
It's not supported by Microsoft, and your business should require that your solution is recommended and supportable by MS.
March 20, 2006 at 4:03 am
True, but how many times do people use the default - Primary Key, Clustered Indexed GUIDs are an extremely bad idea!
March 20, 2006 at 4:00 am
The new program is MCITP*: Database Developer
* Microsoft Certified IT Professional.
You need to pass exams 70-431, 70-441 and 70-442
The first exam is a generic test on SQL Server 2005, the...
March 20, 2006 at 2:04 am
Unlikely given the scenario. Even logged in interactively xp_cmdshell would execute under the context of the instance service.
Can you post the error message verbatim, and check the application and security...
March 20, 2006 at 2:01 am
You need to know versions.
Adventure works are a seperate installation.
SSIS is not available if you are using SQL Server Management Studio Express (SSMSE)
If it's a ful verison and you want...
March 20, 2006 at 1:49 am
You've read the thread; so what are your auditing and security requirements?
If you think there's a piece of software that has the solution, you've failed to understand the problem.
March 9, 2006 at 8:46 am
The object can belong to any schema including dbo, the point is to include the EXECUTE AS dbo in the procedure, then grant execute on the procuedure to the batch...
March 8, 2006 at 1:56 am
Viewing 15 posts - 106 through 120 (of 286 total)