Viewing 15 posts - 10,396 through 10,410 (of 13,874 total)
n79799 (10/9/2012)
October 10, 2012 at 4:09 am
I'd do this by using a Conditional Split in the dataflow. Just redirect the unwanted rows to an output which goes nowhere, while letting the good rows run through as...
October 10, 2012 at 12:51 am
justmohit (10/9/2012)
you can use XML PATH to get the result
Who'd have thought?
Mark, perhaps?
October 9, 2012 at 11:19 am
Another way:
declare @BigString varchar(max) = ''
select @BigString = @BigString + Firstname
from #temp
order by id
select @BigString, lower(@BigString)
October 9, 2012 at 7:47 am
ssms-man (10/9/2012)
Ok, I understand what you want and will add to "to investigate" list. We did not re-use regions till now, so we'll need some time to invest before we...
October 9, 2012 at 6:21 am
ssms-man (10/9/2012)
Phil Parkin (10/9/2012)
ssms-man (10/9/2012)
Phil Parkin (10/8/2012)
October 9, 2012 at 6:09 am
ssms-man (10/9/2012)
Phil Parkin (10/8/2012)
October 9, 2012 at 5:19 am
Steve Jones - SSC Editor (7/28/2008)
October 9, 2012 at 3:06 am
Charmer (10/8/2012)
Phil Parkin (10/8/2012)
Charmer (10/8/2012)
Phil Parkin (10/8/2012)
A no-code solution could utilise FOREACH containers - the container just does not execute if...
October 8, 2012 at 3:15 pm
Four tables with different structures to one file?
October 8, 2012 at 12:46 pm
I've downloaded and installed SSMS Boost. Some interesting features and some usability issues too (eg Script Object as CREATE/ALTER fails with 'No suitable objects found at cursor position' unless you...
October 8, 2012 at 10:35 am
Charmer (10/8/2012)
Phil Parkin (10/8/2012)
A no-code solution could utilise FOREACH containers - the container just does not execute if the file is...
October 8, 2012 at 7:16 am
Are you doing the imports in parallel or in series?
A no-code solution could utilise FOREACH containers - the container just does not execute if the file is not there and...
October 8, 2012 at 6:08 am
mubarak.a (10/8/2012)
I'm new in SQL Server, i want the working process of STUFF & ISNULL. How it works & how it concatenate the row level data into a single data?...
October 8, 2012 at 5:53 am
Is there a chance that you could post this in English?
Most people here communicate in English and I think you will find that you get a better response if...
October 5, 2012 at 5:38 am
Viewing 15 posts - 10,396 through 10,410 (of 13,874 total)