Viewing 15 posts - 31 through 45 (of 972 total)
Duran (5/18/2016)
Thank you for getting back, the thing I am not getting here is, after I have ran the code and type in $ChooseDBRole [enter], there is no value...
May 18, 2016 at 9:20 pm
If the purpose is to use the value being passed out of this function there is no reason to add a variable in the function itself, just let it output...
May 18, 2016 at 12:32 pm
Unless you just did not copy/paste all of your code you are missing about 45 lines of code to just build out the form. The example you can use from...
May 17, 2016 at 8:23 am
You need to review how you are calling the packages, and under what account it is running. If you are using Windows Authentication then whatever account is calling the package...
May 16, 2016 at 8:47 am
sqlnewbie17 (5/11/2016)
Does this code create the list of servers available within a domain ?System.Data.Sql.SqlDataSourceEnumerator]::Instance.GetDataSources() | SELECT ServerName | Format-Table -HideTableHeaders >> C:\INSERTFoundSQLServers.txt?
If SQL Server Browser is running, and the machine...
May 11, 2016 at 1:40 pm
KlaasV (5/11/2016)
To add the assembly I usually go with Import-Module SQLPS, but there are also three versions of that module on my PC. How do I know which...
May 11, 2016 at 9:34 am
There is nothing similar to how you manage connections with .NET. I am not sure on the SSAS, PowerPivot, PowerBI portion as I don't do much with either of those...
May 8, 2016 at 8:48 pm
ankithimmatlalshah (4/29/2016)
I've Windows 2012 R2 server with SQL Express 2012.
I would like to setup a package here on this server that will read the
data from CSV file and insert...
April 29, 2016 at 12:23 pm
Starting point:
Get-ClusterResource | Where-Object -Property ResourceType -EQ "SQL Server Availability Group" | Select-Object Name
Option 1: Just add -ExpandProperty to your select-object:
Get-ClusterResource | Where-Object -Property ResourceType -EQ "SQL Server Availability Group"...
April 28, 2016 at 7:51 am
RLilj33 (4/20/2016)
If CASE already does what IIF can do, why was IIF added for 2012?
The IIF function you will primarily use to control the flow of steps in a batch...
April 20, 2016 at 8:12 am
The pricing is published for all of the vendors you listed, and each one at most have a calculator that you can use to determine what it will cost you.
The...
April 12, 2016 at 12:03 pm
Take a look at this script:
Manipulating SSIS Packages using PowerShell
[/url]
The above script utilizes XQuery in PowerShell so it can be more readable and offer more flexibility.
April 11, 2016 at 10:08 am
Provide a sample configuration file so we can see the structure of your XML to what node you are trying to modify.
April 9, 2016 at 2:12 pm
SQLTougherGuy (4/4/2016)
I have been tasked with creating a dynamic SSIS config file for several packages. I will need to pass in different environment variables for FTP sites and...
April 4, 2016 at 2:31 pm
Phil Parkin (4/4/2016)
Which version of SSIS are you using?If 2012 or later, there is no need to use a config file for this.
Config files are still used with SSIS 2012,...
April 4, 2016 at 2:26 pm
Viewing 15 posts - 31 through 45 (of 972 total)