Viewing 15 posts - 10,246 through 10,260 (of 13,874 total)
;WITH XMLNAMESPACES('www.your_url.com' as s3,'www.google.com' as s2,'www.google.com.mt' as s1)
select cast(replace(cast((SELECT
"Cell"='StringLiteral',
"Cell/Data"='String',
"Cell/Data" = 'Acme, Inc', ''
FOR XML PATH('Row')) as varchar(8000)),'xmlns:s3','s1:s3') as xml)
January 3, 2013 at 5:27 am
sram24_mca (1/3/2013)
Hi Parkin,Consider the source data has to copied to destination with in 3 Minutes.
Regards,
Ram
OK - and what about replication or CDC?
January 3, 2013 at 3:05 am
Duplicate post. Responses here please.
January 3, 2013 at 2:11 am
sram24_mca (1/3/2013)
Can anyone provide tips to implement this...
January 3, 2013 at 2:10 am
iglinka (1/2/2013)
I've already spent a few days researching and setting up the package configuration table (actually using a View which filters the rows on HOST_NAME() per this...
January 2, 2013 at 1:14 pm
You should be able to make this fairly easy to manage using package configurations to control the connection strings for the different connections.
But it will take a bit of setting-up...
January 2, 2013 at 10:55 am
P Jones (1/2/2013)
January 2, 2013 at 9:15 am
sam 55243 (1/2/2013)
I had to make few changes in my script component code, so as to generate only one consolidated output file. 🙂
If you had seen my code earlier...
January 2, 2013 at 5:52 am
Is there any additional complexity to the SSIS package which you have not mentioned?
Is the data flow in a Foreach container, perhaps?
No idea why replacing a proc with another version...
January 1, 2013 at 8:04 am
I'm puzzled by this. The Script Component only seems to write to a single file.
Can you tell me the file names of the two files which are generated please? Are...
January 1, 2013 at 7:49 am
Can you share the code inside the Script Component?
January 1, 2013 at 6:47 am
How about this... Go find a random person, show him or her your copy of SQL Server, then ask how he or she feels about it.
I thought I'd give this...
December 31, 2012 at 12:29 pm
mksunel (12/31/2012)
I want to do sentiment analysis, I need to know how I can achieve this using SQL Server?
Oh come on. Please see the link in my signature regarding how...
December 31, 2012 at 11:15 am
If you really need to do this, you might have to resort to dynamic SQL. At the moment, SQL is treating 'USA','CAN' as a single-valued list (so if the country...
December 31, 2012 at 10:12 am
Roland, I tweaked your query a little to include a WHERE clause & was consequently able to simplify the CASE construct. Also, your update needed to reference the alias (t1)...
December 31, 2012 at 7:14 am
Viewing 15 posts - 10,246 through 10,260 (of 13,874 total)