Viewing 15 posts - 6,931 through 6,945 (of 7,168 total)
Attached are the SSMA for Sybase to 2005 from Roger's first link and the two white papers from Roger's second link.
March 15, 2011 at 9:20 am
The expression builder SSIS offers are just abstractions of .NET code. SSIS expressions were not meant to handle everything...but they do handle most inline data manipulation needs. The Script Task...
March 15, 2011 at 9:10 am
My Flat File Connection is setup with a double-quote as a text qualifier and I did not have any issues importing a file containing the data shown...
I see this issue...
March 14, 2011 at 8:47 pm
I am not having the same issue. Do you have a Text Qualifier set on your Flat File Connection?
Please post the line of the file having the issue, the properties...
March 14, 2011 at 5:31 pm
I was giving some time for the experts to chime in since I do not have a definitive answer for you...but since you reposted I'll jump in...
Your WHERE clause tolerates...
March 14, 2011 at 3:32 pm
Martin Stephenson (3/14/2011)
March 14, 2011 at 1:20 pm
I am a bit confused as to what you're now asking. My solution was based on using OPENXML...it lokos like somewhere along the line though you switched to using CROSS...
March 14, 2011 at 1:13 pm
You can achieve this by using the Derived Column Component to add a blank column to your data set and then using a "Transformation Script Component" to populate the...
March 14, 2011 at 11:18 am
USE msdb
GO
DECLARE @proc_name SYSNAME = 'stored_procedure_name' ;
SELECT *
FROM dbo.sysjobsteps
WHERE command LIKE '%' + @proc_name + '%' ;
March 14, 2011 at 10:50 am
This should get you there:
DECLARE @idoc INT ;
DECLARE @xml XML = N'
<views>
<view viewName="test_view" viewSequence="1" viewVersion="2.0" viewitem="US" viewStart="2011/02/16 15:00:56:056" viewEnd="2011/02/16 15:00:57:057" viewDuration="00:00:00.5468750">
<viewEvents>
...
March 14, 2011 at 10:47 am
TheGrem (3/14/2011)
I desperately need help.
I have created a stored proc that retrieves my data correctly from a table. I need to be able to access this data...
March 14, 2011 at 9:51 am
Here is some free Video content from some of the best in the biz:
March 14, 2011 at 9:45 am
The Import Export Wizard will help you do a simple 'source to destination' data copy, hence the lack of transformation support. It's a shortcut to create a package very similar...
March 14, 2011 at 9:34 am
spin (3/14/2011)
I see your point and def don't want to start rolling back transactions. Am i right in thinking that i don't need to worry about this in 2005...
March 14, 2011 at 9:28 am
This plus the info from ALZDBA should provide the tools to reach your solution.
DECLARE @ThisDate DATETIME = GETDATE() ;
SELECT
DATEADD(hh, DATEDIFF(hh,...
March 13, 2011 at 10:00 am
Viewing 15 posts - 6,931 through 6,945 (of 7,168 total)