Viewing 15 posts - 481 through 495 (of 1,241 total)
If you absolutely are identifying a row here base on the values of emp1, emp2 and emp3, then you can create a calculated field that persists in the table. This...
----------------------------------------------------
September 29, 2016 at 12:14 pm
Another option you can try is the fixed width delimiter in SSIS. THere is no guarantee here though as it totally depends on the way your data is laid out.
----------------------------------------------------
September 28, 2016 at 1:45 pm
You are in a tight spot here. You have text files with commas as the field separators and some of those fields are strings with commas within them. You cant...
----------------------------------------------------
September 28, 2016 at 1:44 pm
RonKyle (9/28/2016)
I have several dozen csv files where the data quality is poor, so is difficult to load directly into the SQL Server 2012.
I have trouble imaging this, and certainly...
----------------------------------------------------
September 28, 2016 at 11:41 am
Michael L John (9/27/2016)
and Access does a better job pulling spread sheets in then SSIS.
So you would not use SSIS to pull into Access? I think the user wants...
----------------------------------------------------
September 27, 2016 at 1:59 pm
If you are able to access the folder and file then you may want to study creating a proxy account for the SQL SERVER Agent account. This allows the agent...
----------------------------------------------------
September 27, 2016 at 1:54 pm
I am not totally certain but you may want to install the appropriate version of the provider (32 bit, 64 bit) on both the machine where Office is installed and...
----------------------------------------------------
September 27, 2016 at 1:44 pm
If DAX in any way resembles MDX then I would say yes it is hard. Like any language, if you dont use it you begin to lose this. This holds...
----------------------------------------------------
September 27, 2016 at 1:31 pm
In a Where clause you may have a situation as
WHERE (a>20) OR
...
----------------------------------------------------
September 27, 2016 at 1:26 pm
Just out of curiosity, what was your language setting?
----------------------------------------------------
September 27, 2016 at 11:27 am
If you want to preserve a static definition of territory over time, I am guessing this is by your definition and not the clients. I think of having a extra...
----------------------------------------------------
September 26, 2016 at 3:33 pm
Kazmerelda (9/26/2016)
So I went in to test this morning all hopeful....and sadly I am getting...
----------------------------------------------------
September 26, 2016 at 11:34 am
The only issue I see here is with Scott and My results is the emp_id = 45678. The employee has the same email for both fields, and that email is...
----------------------------------------------------
September 23, 2016 at 4:06 pm
What I did first is create a list of invalid emails
With myCTE as
(
Select emp_id, emailType, email
From #temp1
Unpivot (email for emailType in ([email1],[email2])) as upvt
)
Select email, count(email) as numTotal
into...
----------------------------------------------------
September 23, 2016 at 2:48 pm
Good article that highlights rounding as really a formatting function. In the movement and derivation of data, I like to save rounding towards the end. That is, when you actually...
----------------------------------------------------
September 23, 2016 at 2:00 pm
Viewing 15 posts - 481 through 495 (of 1,241 total)