Viewing 15 posts - 1,021 through 1,035 (of 13,841 total)
The standard trick is to import the header row as if it were data and then discard it in the data flow (use a Conditional Split to do this).
Also add...
January 31, 2023 at 5:10 pm
Sorry, I've been doing this stuff for so many years that I have no idea about suitable training resources for you.
January 31, 2023 at 1:13 pm
Sounds like triggers are your best bet. What sort of alert do you have in mind?
If a user modifies 5,000 rows, do you want 5,000 alerts generated?
If thousands of alerts...
January 31, 2023 at 8:46 am
In answer to your last question, the best you can do is
a) Describe what you are trying to achieve and what you want help with
b) Provide sample data in the...
January 30, 2023 at 2:28 pm
Well, maybe it's time you learned a bit more. My script is straightforward and does the following things:
January 30, 2023 at 2:22 pm
Generate your own would appear to be the next resort.
If you open the link, there is a PDF option as well.
Is there anyway to import PDF file data...
January 30, 2023 at 2:17 pm
Generate your own would appear to be the next resort.
January 30, 2023 at 1:04 pm
What do you mean by 'fix' exactly? Do you want to generate a unique Id yourself?
I can generate my own uniqueID and I did that too but there...
January 30, 2023 at 12:38 pm
Phil,
I can't create table (nor store procedures for example or views) because I don't have any other database access except for reading. Normally I import data and start working...
January 30, 2023 at 12:36 pm
Should I done it differently? How?
Yes. Provide your sample data in the form of CREATE TABLE / INSERT statements.
If you do that, others can copy the text straight...
January 30, 2023 at 12:25 pm
What do you mean by 'fix' exactly? Do you want to generate a unique Id yourself?
January 30, 2023 at 12:23 pm
If it's just an hour value, it really should be a tinyint.
You are dead right.
January 30, 2023 at 8:51 am
I'm so sorry guys, wrong CASE
(CASE WHEN CAST(DH.OPENING_HOUR_H AS INT) BETWEEN 10 AND 16 THEN 'Lunch' WHEN CAST(DH.OPENING_HOUR_H AS INT) BETWEEN 16 AND 19 THEN 'Snack' ELSE 'Dinner' END)...
January 29, 2023 at 9:15 am
I'd probably use a mapping table rather than a rambling CASE statement - makes the code easier to read, particularly if there are lots of distinct grades to be updated....
January 27, 2023 at 3:11 pm
Not directly related to your issue, but there are a couple of good-practice items I suggest you consider:
January 27, 2023 at 11:00 am
Viewing 15 posts - 1,021 through 1,035 (of 13,841 total)