Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
166 views

Unexpected sp_MSForEachDB behavior

I'm working to enhance my understanding of some system sprocs and I'm very confused by this script I was working on. To exercise my understanding of sp_MSForEachDB I decided to write a script that ...
1
vote
1answer
39 views

How to create a table valued function or view that returns the results of a query ran against multiple databases

I need to create a view or a table valued function that returns one result set from a query ran against a dynamic list of databases (stored in a table). All of the databases have the same structure, ...
1
vote
1answer
121 views

Using a Hidden Stored Procedure

I am trying to use the following stored procedure to obtain databases from a server. However, I just want the databases created from a month ago. What do I have to do to make this work? Here is ...
0
votes
2answers
31 views

SQL get table row count for specific table in DB

How Can i iterate thru the all my DB's and get a row count for each employee table? Each client is has there own DB, need to find the total employees in each DB. Been trying to figure out how to use ...
0
votes
1answer
72 views

i want to store size of the log file in a temp table

what is the wrong with insert into #tempA(MailSize) EXEC sp_foreachdb_dev @command = N' USE ? SELECT (size * 8)/1024.0 AS size_in_mb FROM sys.database_files WHERE data_space_id = 0', ...
0
votes
1answer
246 views

I want to update a table in each db on server

I have a config table with same fields "SMTP_Server". I want to update the fields with new value in each database on the server. sp_foreachdb updates last table (in last database). Why? please help
0
votes
2answers
321 views

sp_MSforeachdb query help

I'm working with a lot of databases that are the same so I am using the sp_MSforeachdb procedure so that I can retrieve information from a table. The problem I have encountered is that there are ...
0
votes
2answers
433 views

sp_MSforeachdb MS SQL error

This is for MS SQL 2005: Anyone know why the first succeeds, then creating two of the same statement in succession fails? All the statements are exactly the same. Changing the double quote to two ...
0
votes
4answers
2k views

Help with sp_msforeachdb -like queries

Where I'm at we have a software package running on a mainframe system. The mainframe makes a nightly dump into sql server, such that each of our clients has it's own database in the server. There ...