Viewing 15 posts - 1 through 15 (of 21 total)
Here are three links to PowerShell scripts that do this work in various methods. A Google search of "powershell sql server inventory" brings up quite a few links. Do like...
June 24, 2014 at 6:04 am
There are some powershell scripts out there that can be used to do this kind of thing. They can be coded to produce very pretty excel spreadsheet type reports. Glen...
June 19, 2014 at 12:14 pm
When attempting to install the task for SSIS 2010, I encountered a problem in that it said I need to have SSIS 2010 on my system (I did). In researching...
March 19, 2014 at 8:51 am
You've not given us any code, but is the email portion of your job a step of it's own? If so, do you have the database set to MSDB?
January 3, 2014 at 7:15 am
SELECT node_id, node_state_desc, memory_node_id, online_scheduler_count,
active_worker_count, avg_load_balance
FROM sys.dm_os_nodes WITH (NOLOCK)
WHERE node_state_desc <> N'ONLINE DAC' OPTION (RECOMPILE);
November 6, 2013 at 9:17 am
Yes, the role does have permission to execute the stored procedure sp_send_DBMAIL and the user is a member of the role. DBMail is enabled and a default profile is defined...
February 22, 2013 at 5:32 am
I sure wish I had seen this answer a month ago when I was trying to do that very thing! Even Redgate could not tell me how to restore the...
January 23, 2013 at 9:55 am
Thanks -- I know excel can open it just fine, but it isn't the same as it actually BEING an excel file (at least to my users who are looking...
May 6, 2011 at 1:30 pm
This is very interesting to me. Could this process also be used to write to .xls file? I have a 64 bit system and using SSIS to write to excel...
May 6, 2011 at 12:52 pm
Here is what I've ended up doing.
set the Is Local Path Variable back to false, created a file connection to the dummy file in the folder as my local path...
July 27, 2010 at 12:12 pm
Yes, I have verified that the file is created. and I have also removed the variable reference and pasted the actual path into the ftp, run it manually and...
July 27, 2010 at 9:46 am
I am trying the same thing. I have the FTP task set to use variable for the local file, then created a variable named FullFilePath set to evaluate as expression...
July 27, 2010 at 8:13 am
Yes when you add a TABLE you have a detail row, however, at some point you must have deleted the table and gone with a tablix. Your own list of...
July 14, 2010 at 1:36 pm
tsmith-960032 (7/14/2010)
So in fact, what you are saying is that the detail row cannot be brought back?
No, what I am saying is that you never had a detail row to...
July 14, 2010 at 12:35 pm
No, Tablix took the place of Matrix and is an aggregation tool.
From Applied Microsoft Reporting Services 2008 by Teo Lachev "Tablix lets you author versatile table-style reports with multiple...
July 14, 2010 at 10:02 am
Viewing 15 posts - 1 through 15 (of 21 total)