Viewing 15 posts - 11,596 through 11,610 (of 11,676 total)
Although it is not very secure, that should do it.
Microsoft discourages the use of Local System as account though:
http://msdn.microsoft.com/en-us/library/ms191543.aspx
What is the specific error that you get when you try to...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 12, 2010 at 7:37 am
Create an Execute SQL Task that reads your table with the filepath. Store the result in a string variable using ResultSet -> Single Row. Connect the SQL Task with the...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 12, 2010 at 6:20 am
Go to SQL Server Configuration Manager and see which account the SQL Server Agent uses.
Then make sure that this account has read (and if needed, write) permissions on the folders...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 12, 2010 at 5:19 am
You are trying to convert a unicode string (DT_WSTR) to a non-unicode string (DT_STR).
If there are unicode characters that are not found in the code page of DT_STR (like the...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 12, 2010 at 1:35 am
Here you can find some documentation on data sources:
http://msdn.microsoft.com/en-us/library/cc671619.aspx
There is also a section about the disadvantages of using them.
So indeed, the advice is not to use them, but use connection...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 11, 2010 at 6:55 am
Has the SQL Server Job Agent account access to the specified path?
Maybe he hasn't the permission to read files in that folder.
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 11, 2010 at 6:52 am
I think that if you use an OLE DB Command in your data flow, there will be a commit after each single update (as the OLE DB Command will issue...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 11, 2010 at 5:46 am
If the data in a column is of mixed datatypes, you should put the IMEX=1 option in your connectionstring.
For example:
Provider=Microsoft.Jet.OLEDB.4.0;Data Source="\\myServer\myExcelFile.xls";Extended Properties="EXCEL 8.0;HDR=NO;IMEX=1";
This will force the Jet adapter to read...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 11, 2010 at 5:37 am
My first idea:
read the table with the SQL statements with an Execute SQL Task and store the results in a recordset. This recordset is stored in an object variable.
Then use...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 11, 2010 at 5:26 am
Import the column as text (make sure that you use the intermixed option in the connection string. Be careful, importing mixed data types can cause a lot of trouble. There...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 10, 2010 at 1:29 pm
You should never post your e-mail like that on publicly accessable forums like this one, unless you like receiving spam.
Put it up like this:
myName at myServer dot com
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 10, 2010 at 6:02 am
You can read this forum, you'll find plenty of issues here 🙂 (and in most cases, also their solutions)
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 9, 2010 at 1:24 pm
Are that the only errors that you receive?
If the Execute Package went red, that there must be some sort of error that would explain why it has failed.
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 9, 2010 at 7:59 am
At my current project I deploy packages I'm developing in a subversion folder to the test environment by simply using the deploying capabilities of BIDS Helper in BIDS.
From test to...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 9, 2010 at 7:54 am
A possible approach is to use a scripting component to undouble the column. In other words, make sure that each data item has its own row (so no rows with...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
March 9, 2010 at 1:56 am
Viewing 15 posts - 11,596 through 11,610 (of 11,676 total)