Viewing 15 posts - 1,291 through 1,305 (of 2,636 total)
SQL Server Management Studio (SSMS) is the graphical mangement tool for SQL Server 2005. It includes a query tool.
SQL Server Query Analyzer (hopefully this is what you mean) is...
December 13, 2007 at 2:57 pm
This works if you have SQL 2000 Enterprise Manager on the same computer.
In SSMS:
1. Click on "View" and select "Registered Servers"
2. R-click on "Database Engine" and select "Previously Registered Servers"
Your...
December 12, 2007 at 2:49 pm
There are two ways I know of to accomplish this.
1. Grant permission at the schema level. If all stored procedures are in the same schema, like dbo, you can...
December 12, 2007 at 2:28 pm
I've had the best luck saving DTS packages as .dts files then opening them in SQL 2005 SQL Server Management Studio and resaving them as legacy packages.
As for jobs, script...
December 12, 2007 at 10:02 am
Upgrade Advisor is designed to scan versions 7.0 and 2000, not SQL 2005. Version 9.0 is. SQL 2005.
Greg
December 10, 2007 at 9:27 am
You could try writing a stored procedure that updates the password column in master.dbo.sysxlogins and giving the users permission to execute it. Look at master.dbo.sp_password for the update code....
December 6, 2007 at 12:33 pm
Specifically, use the "Copy objects and data between SQL Server databases" option of the Import/Export Wizard or the Copy SQL Server Objects task in DTS Designer to retain indexes and...
December 6, 2007 at 12:12 pm
It's a known bug. See http://support.microsoft.com/kb/938085/en-us.
Greg
December 6, 2007 at 11:40 am
Installing SQL Server 2005 will also install SQL Server Management Studio (SSMS), the replacement for Enterprise Manager. You'll also have the option to install SSIS when installing SQL 2005....
December 6, 2007 at 10:09 am
Granting SELECT on sysdtspackages in msdb will allow the developer to view the legacy packages.
Greg
December 5, 2007 at 2:01 pm
I can't speak for all companies, but we use a separate CASE tool that has a data repository for logical modeling. We want something that is independent of SQL...
December 5, 2007 at 9:15 am
You should also use a UNC path rather than a mapped drive letter.
Greg
December 5, 2007 at 8:48 am
You can see the forum topic key by scrolling down on any forum subject page.
The titles do indicate number of posts. Editor Steve Jones listed them in this thread:...
December 4, 2007 at 9:39 am
What I do in this situation is import the flat file into a staging table with matching data types without doing any conversions, then use an Execute SQL task to...
December 4, 2007 at 9:20 am
Viewing 15 posts - 1,291 through 1,305 (of 2,636 total)