Viewing 15 posts - 5,221 through 5,235 (of 5,590 total)
Steve Kinnaman (6/11/2009)
select ...
June 12, 2009 at 5:32 pm
carissa.chris (6/12/2009)
June 12, 2009 at 4:20 pm
Whoops, I didn't notice that you were in the SSIS forum - I gave you a T-SQL solution.
I'll have to let someone that knows SSIS better answer this.
June 11, 2009 at 9:19 pm
declare @CRLF = char(13) + char(10)
set @YourString = replace(@YourString, @CRLF + @CRLF, @CRLF)
June 11, 2009 at 7:51 pm
mjarsaniya (6/11/2009)
select name,surnamefrom emp
where id in(@LIST)
I want to pass @list at runtime.
Is it possible.
I outline my favorite way in Using XML to Enhance the Performance of String Manipulations[/url].
June 11, 2009 at 6:41 pm
Cynthia DuBose (6/11/2009)
June 11, 2009 at 6:28 pm
select
[ZIP] = replace(left([CAD3],6), ' ', ''),
[City] = substring([CAD3], 7, len([CAD3]))
from crm5.CAD3
June 11, 2009 at 6:15 pm
Grant Fritchey (6/11/2009)
WayneS (6/10/2009)
A reader of my article today asked a very good question that I'm not sure what the answer would be. I'm hoping that someone along the...
June 11, 2009 at 9:16 am
Gail, thank you for jumping in and answering this for me. You knowledge of how indexes work far surpasses mine.
June 11, 2009 at 3:30 am
I assume you have data like:
declare @test table (colA int, colB varchar(50))
insert into @test
select 1, 'plain text' union
select 2, 'csv,data,in,this,row'
select * from @test
A properly formatted CSV file is not just...
June 11, 2009 at 3:26 am
You might also want to check the port. The default port is 1433, but you might have changed it during the installation. Or, the previous installation might have been different,...
June 11, 2009 at 2:24 am
This might help you out.
http://www.lmgtfy.com/?q=sql+server+2005+move+tempdb+site%3Amicrosoft.com
June 11, 2009 at 2:19 am
Cynthia DuBose (6/10/2009)
June 11, 2009 at 2:14 am
jain_abhishek (6/11/2009)
June 11, 2009 at 2:03 am
Viewing 15 posts - 5,221 through 5,235 (of 5,590 total)