Viewing 15 posts - 16 through 30 (of 39 total)
There are 3rd party tools that allow you to run a query or queries against multiple servers in parallel. See SQL Farm Combine for example, http://www.sqlfarms.com.
August 7, 2006 at 5:28 am
There is a best development and deployment practices presentation that runs around the internet. It is typically given to SQL User Groups and in Code Camps... Enjoy...
http://www.itresourcepartners.com/bssug/downloads/BestCodingPractices.ppt
August 6, 2006 at 5:40 pm
BTW- You can always tools like SQL Farm Combine to run the simple query against as many databases as you wish, across multiple servers as well.
July 5, 2006 at 11:04 am
You can connect to all databases (either on the same server or on different servers) and run the query/script and get aggregated results using tools such as SQL Farm Combine....
March 22, 2006 at 3:22 pm
Union all should work fine. Union vs. union all is really not the answer, since if one doesn't merge, the other wouldn't merge either.
Check out your SQL code. I would...
March 14, 2006 at 6:43 am
Using Query Analyzer, try to log into the master database.
Then run SELECT * FROM master.dbo.sysdatabases
The scenario you describe is quite common when the master database on the server gets corrupt,...
December 27, 2005 at 10:34 pm
Several things need to be commented regarding your question:
1. Question: Are you creating the schema on the target servers yourself, or are you letting the publisher create the schema on...
December 21, 2005 at 8:26 am
You can use tools like SQL Farm Combine from http://www.sqlfarms.com, to deploy the code on all your databases and servers in parallel by a click of a button,...
December 16, 2005 at 9:05 am
Check out SQL Farm Combine at http://www.sqlfarms.com.
Using this tool you can query all 19 servers in parallel into a single grid results, and dump the results into a...
December 13, 2005 at 4:58 pm
The example you provided is great. One comment though- the same goal can be achieved without any development efforts by running simple SQL queries on all databases and servers in...
December 3, 2005 at 5:16 pm
If you have many servers, you can query and return data from all of your servers at the same time to collect the information you need using SQL Farm Combine....
November 18, 2005 at 12:24 pm
Just to add to the above:
SQL Farm Combine will be available for Beta testers on Thursday.
Please refer to last month's SQL Server Magazine or SQL Server Standard that came out...
November 8, 2005 at 1:43 pm
Look at the SQL Farm Combine from SQL Farms. It lets you query multiple databases and servers at the same time, and does what you seek.
November 7, 2005 at 2:01 pm
Please note that a script that synchronizes your server logins is available on SQL Farms' SQL Education Center at
http://education.sqlfarms.com/ShowPost.aspx?PostID=80
It's free...
July 13, 2005 at 10:26 pm
Viewing 15 posts - 16 through 30 (of 39 total)