Viewing 15 posts - 8,506 through 8,520 (of 13,882 total)
We have a TeamCity (TC) server which we use to automate many repetitive jobs, in the spirit of CI.
Such things include:
1) Moving changes from source control to QA databases
2) Building...
April 14, 2015 at 1:07 am
This works, as long as the folder hierarchy depth is always the same. If not, you'll have to get more complex & use TOKENCOUNT too.
token(token("c-Drive\\Files\\Data\\Claims\\Current Load\\31 Dec 2012.xls","\\",6),".",1)
April 13, 2015 at 8:47 am
rawatsonika4u (4/13/2015)
April 13, 2015 at 6:34 am
ankithimmatlalshah (4/13/2015)
Thank you for the response.
I've finally managed it with script component, wherein I replaced the column separator with vertical pipe and row separator as TAB character and managed...
April 13, 2015 at 4:27 am
ankithimmatlalshah (4/10/2015)
Seems like you are trying to tell the following solution.
http://visakhm.blogspot.in/2014/06/ssis-tips-handling-embedded-text.html
Actually I tried to achieve it but the replace expression is throwing an error. It does not allow me...
April 13, 2015 at 3:57 am
Try this:
if object_id('tempdb..#dates', 'U') is not null
drop table #dates;
create table #dates
(
RecordId int primary key clustered
,RecordDate datetime
);
insert #dates
...
April 13, 2015 at 2:11 am
Can anybody please advise how to resolve this problem?
Change your text qualifier to something else.
April 10, 2015 at 9:20 am
karthik82.vk (4/10/2015)
I just updated the post. its a typo from my end.
I tried LEFT JOIN and FULL JOIN however i am getting only one row.
the category table has...
April 10, 2015 at 8:35 am
Where does CategoryId 8 come from?
April 10, 2015 at 4:45 am
sam 55243 (4/8/2015)
I have simple query, I'm trying to convert a varchar value to datetime format but it throwing below error:
The conversion of a varchar data type to a datetime...
April 8, 2015 at 7:36 am
MotivateMan1394 (4/8/2015)
we need to re arange these fields once or twice a day . (when any one dont any change on the...
April 8, 2015 at 4:38 am
Regarding the Unicode errors, please have a look here.
April 8, 2015 at 3:58 am
Koen Verbeeck (4/8/2015)
Please do not crosspost. It wastes peoples time and fragments replies.Original thread with replies can be found here:
http://www.sqlservercentral.com/Forums/Topic1675257-3411-1.aspx
Wow.
You just need to learn about apostrophes and we'll be in...
April 8, 2015 at 1:58 am
Please do not cross-post, it fragments responses and wastes people's time. Replies here.
April 8, 2015 at 1:57 am
MotivateMan1394 (4/8/2015)
Hi I ned to do some operations on a table when any user dont work with it.How do i do it?
Do i lock the table? and is it possible?
What...
April 8, 2015 at 1:53 am
Viewing 15 posts - 8,506 through 8,520 (of 13,882 total)