Viewing 15 posts - 5,041 through 5,055 (of 11,678 total)
CozyRock has a 3rd party Excel connector for SSIS that can connect to password protected Excel files.
The PowerShell solution is free and it probably won't kill you 🙂
August 26, 2013 at 4:51 am
So if I log into a coworkers computer using my own domain account, I can suddenly have more privileges because I'm using another IP? Awesome, this makes hacking so much...
August 26, 2013 at 2:56 am
kakumanukalyan (8/26/2013)
SELECT ContactID,Concat('$',AVG(TotalDue)) AS [Avergare Total Due]FROM Sales.SalesOrderHeader
GROUP BY ContactID
ORDER BY 1 ASC
Not really a fan of doing this in the database layer. If the result is NULL, you get...
August 26, 2013 at 2:54 am
There's a system SSIS variable called UserName that you can use.
August 26, 2013 at 2:41 am
August 26, 2013 at 2:15 am
Phil Parkin (8/25/2013)
August 26, 2013 at 2:06 am
You'll need to remove the password first. You can do this with PowerShell. This thread posts a solution:
http://www.sqlservercentral.com/Forums/Topic885800-148-1.aspx#bm888553
August 26, 2013 at 2:04 am
There is certainly overlap.
A good BI developer should be able to write decent TSQL.
He should also know about partitioning (to speed up ETL), indexes, recovery models and so on.
A database...
August 26, 2013 at 1:32 am
The variable is being re-evaluated every time. That's why you need to calculate it once (in a script task or execute sql task) and store the result in a variable,...
August 26, 2013 at 1:30 am
Take a look at this excellent article on how to concatenate row values:
August 26, 2013 at 1:24 am
GilaMonster (8/25/2013)
What's your favourite index-related myth?
Clustered index sorts on physical level.
August 25, 2013 at 2:44 pm
Very nice question for a Monday (although I'm already answering this on Sunday evening :-D).
If you forget about this behaviour of table variables in production code...
August 25, 2013 at 1:25 pm
The field of databases is quite big.
You have 3 main pillars regarding jobs: a DBA (the position Jeff talked about), a database developer and business intelligence.
My personal opinion is that...
August 25, 2013 at 1:22 pm
tibco29 (8/24/2013)
I am successive when I call 2 or 3 child packages from master, but how about to call all 5 child packages from master parallel
The solutions seems quite simple:...
August 25, 2013 at 1:15 pm
What has the environment variable to do with the command line? You specify a dtsconfig file directly.
What is the error that you get?
August 25, 2013 at 1:12 pm
Viewing 15 posts - 5,041 through 5,055 (of 11,678 total)