Viewing 15 posts - 12,271 through 12,285 (of 13,876 total)
What do you mean by "type of table"?
--Edit
are all of the physical tables already set up in SQL Server, or are you hoping to do some sort of create-then-import...
March 3, 2010 at 9:18 am
This works - just tested it:
RIGHT("0" + (DT_STR,4,1252)DATEPART("dd",GETDATE()),2)
March 2, 2010 at 11:15 am
I'll have to guess at your question, as you have not stated one ...
Use something like
Right('0' + [month as Varchar], 2)
March 2, 2010 at 10:38 am
That is a fairly horrendous requirement 🙂
Unless you can put logic into the front-end application to track Field Last Modified, you just won't have that info. Same with 'Record Last...
March 2, 2010 at 10:08 am
You have a single table containing all that stuff? Sounds like it might be in need of some normalisation ...
Do you want to track the change dates separately for each...
March 2, 2010 at 9:21 am
isnull([likes_fish]) ? FALSE : [likes_fish]
should work.
February 25, 2010 at 11:56 am
You could add a derived column with an IsNull() check in it to force your source data to be compliant with your destination's requirements.
February 25, 2010 at 8:46 am
klininger (2/24/2010)
If it helps (misery loves company): I've never been more frustrated with one single program in my life more than SSIS.--
Kurt
Wow, that's a big statement. I think the older...
February 24, 2010 at 9:58 am
Strange indeed - thanks for posting back & well done.
February 24, 2010 at 3:02 am
Rather than your 'blank' "" - which is an empty string - your values may be coming in as NULL.
Try this (untested) instead:
IsNull([Column_1])? "0" : [Column_1]
You can always add in...
February 23, 2010 at 11:39 am
Finding a character in a string - use FINDSTRING.
Finding a carriage return - look for "\r".
Finding a new line - ""
Edit, that new line code should say
double quote backslash...
February 23, 2010 at 1:16 am
What is your data source?
February 22, 2010 at 2:58 pm
Not sure about that 'bug', but why not simply move the processed files to another folder (/Archive, for example)? It's tidier and your problem will go away.
February 20, 2010 at 1:18 am
Please include a question or two in your post.
February 19, 2010 at 12:27 pm
Does the SQL Agent service user have the requisite privileges to access the other servers?
February 19, 2010 at 9:19 am
Viewing 15 posts - 12,271 through 12,285 (of 13,876 total)