Viewing 15 posts - 1 through 15 (of 19 total)
The sample you've provided looks to be more like an XML format to me, not really a CSV. Unless the intent is to just load the XML stuff into columns...
March 24, 2015 at 9:06 am
I'm a bit of a SQL newbie myself, fair warning.
What's the data type for column 3? What's the actual data that's in row 1 column 3 in your CSV file?
Is...
March 23, 2015 at 3:36 pm
Phil that's a great recommendation. I'm going to head down that path today! At a cursory glance it looks like I can definitely implement command line syntax, so I don't...
March 5, 2015 at 7:09 am
Yes, that's correct. The data in the master table never gets updated, just new rows added on an hourly basis.
January 15, 2015 at 5:17 pm
Hi Jeff (and MWise),
Things are coming to an end on this, though possibly not as efficient as they could be. I did a couple of tasks in SSIS - Download...
January 13, 2015 at 9:50 am
I'm just now realizing what you said, Jeff - that I simply can't use a variable name with BULK INSERT - in T-SQL or SSIS (since it's simply executing the...
January 8, 2015 at 9:54 am
Excellent, I've now got it set up with the SourceConnection expression and it's showing the correct path/filename....however...upon saving the project it immediately throws a non-fatal error indicating that it cannot...
January 7, 2015 at 9:51 am
Double post - removed.
January 7, 2015 at 9:36 am
@MWise - I've a question I'm hoping you can assist with. I've done some searching but have been unable to come up with a solution so far.
Thus far...
January 6, 2015 at 1:51 pm
Thank you both for your assistance. I'm probably going to go the SSIS route since we've a good amount of existing packages today (and xp_cmdshell is presently disabled). Thanks guys!
January 6, 2015 at 10:12 am
Eirikur Eiriksson (12/3/2014)
December 3, 2014 at 10:06 am
Eugene Elutin (10/7/2014)
DECLARE @sql NVARCHAR(MAX) = ''
CREATE TABLE #tResults (TableName VARCHAR(50))
SELECT @sql = @sql + 'INSERT #tResults SELECT ''' + st.name + ''' WHERE '...
October 9, 2014 at 9:58 am
Eugene Elutin (10/7/2014)
DECLARE @sql NVARCHAR(MAX) = ''
CREATE TABLE #tResults (TableName VARCHAR(50))
SELECT @sql = @sql + 'INSERT #tResults SELECT ''' + st.name + ''' WHERE '...
October 7, 2014 at 9:04 am
Yeah, there's no way around that for sure.
Thank you to everyone that replied and tried to understand what the hell I was trying to achieve. I greatly appreciate everyone's time...
October 7, 2014 at 8:53 am
Sean Lange (10/7/2014)
October 7, 2014 at 8:43 am
Viewing 15 posts - 1 through 15 (of 19 total)