August 1, 2016 at 5:06 am
Hi Folks,
How to fetch the backup information of all SQL servers(I got 100 SQL Instances) in my domain by creating SSIS packages ?
NM
August 1, 2016 at 5:16 am
1. Write a query that gets the information you need from the target servers
2. Use a Data Flow task to pull the query results into a table on your central server
3. Create a table on your central server with the names of all of the target servers in it
4. Use a ForEach Loop to connect to each of the servers in turn and execute the Data Flow task
John
August 1, 2016 at 5:49 am
I need the backup information from 100 servers on my domain like FULL, Incremental, Log,start date and finish date and how to make into SSIS ?
August 1, 2016 at 5:58 am
narayanamoorthy.a (8/1/2016)
I need the backup information from 100 servers on my domain like FULL, Incremental, Log,start date and finish date and how to make into SSIS ?
Can you do it in T-SQL for a single server?
The absence of evidence is not evidence of absence.
Martin Rees
You can lead a horse to water, but a pencil must be lead.
Stan Laurel
August 1, 2016 at 5:59 am
I'm not writing the query for you - that's what you're paid to do. If you really don't want to do it yourself, just type "query to return backup information" into your favourite search engine.
As for the SSIS part, please let me know which part of what I posted earlier you need more help with.
John
August 1, 2016 at 6:02 am
John,
I have the backup script with necessary fields that I need. I am just wondering how to import it in SSIS and get the information from all 100 servers.
August 1, 2016 at 6:39 am
narayanamoorthy.a (8/1/2016)
John,I have the backup script with necessary fields that I need. I am just wondering how to import it in SSIS and get the information from all 100 servers.
John has provided an outline of how to do it. Now it's up to you to try to figure it out and come back with any detailed questions you may have.
The absence of evidence is not evidence of absence.
Martin Rees
You can lead a horse to water, but a pencil must be lead.
Stan Laurel
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply