Viewing 15 posts - 61 through 75 (of 428 total)
xsevensinzx (5/19/2016)
sestell1 (5/18/2016)
May 19, 2016 at 9:09 am
Very interesting question.
Thank you for posting this!
May 19, 2016 at 7:04 am
Yes, I do as well. Unfortunately, clients are forever finding new ways to break that with inconsistent layouts, missing header row values, header values that span columns, etc... ...
May 19, 2016 at 6:54 am
Darn, it looks like that uses the MS Office API to connect to the workbook and do the conversion. I was hoping for a command-line utility that does not...
May 18, 2016 at 11:43 am
Excellent, I'm glad you found a solution.
I'm curious to know what tool you are using to convert the Excel worksheets to CSV files. That could be handy.
for the string...
May 17, 2016 at 10:54 am
I'd use SSIS for this, although it'd be rather complicated.
I think I'd create an SSIS package with a connection to your Workbook. I'd then use a data...
May 17, 2016 at 8:57 am
That is because you are missing the last parenthesis. 😉
May 16, 2016 at 11:32 am
Hello,
I'm afraid I'm not quite sure what you are asking.
You said that you want to return VERSION. I see that you have it included in your...
May 16, 2016 at 9:26 am
Both of those queries work because they are essentially the same thing.
You should probably work to understand those queries so that you can modify them to return the...
May 16, 2016 at 8:10 am
I don't think you are going to be able to do this in a reliable manner.
You can use a script task to connect to the workbook and force...
May 13, 2016 at 12:45 pm
If you are running the job within seconds of creating it, then I'm wondering if you even need a schedule at all?
You could kick off the job without a schedule...
May 13, 2016 at 12:38 pm
You can try doing something like this:
CASE
WHEN RTrim(@@VERSION) LIKE '%(VM)' + CHAR(10) THEN 'Virtual'
WHEN RTrim(@@VERSION) LIKE '%(Hypervisor)' + CHAR(10) THEN 'Virtual'
ELSE 'Physical'
END AS Machine_Type
...but I can't vouch for the...
May 13, 2016 at 12:33 pm
ben.brugman (5/13/2016)
SSIS, I am not a huge fan of this either, there always seems to be a problem with deployment and credential issues.
If you did decide to go this route,...
May 13, 2016 at 12:25 pm
rk1980factor (5/13/2016)
SELECT
*
FROM
#Employee Employee
FULL OUTER JOIN
#Class Class
ON
IsNull(Employee.[Emp_no.], '') = IsNull(Class.[Emp_no.], '')
ANDIsNull(Employee.Org_Code, '') = IsNull(Class.Org_Code, '')
ANDIsNull(Employee.Org_Num,...
May 13, 2016 at 8:21 am
Interesting question.
I've always used a combination of xp_cmdshell and bcp to move data to/from files within T-SQL.
You could also use OLE automation, but that would require that you enable 'Ole...
May 13, 2016 at 8:11 am
Viewing 15 posts - 61 through 75 (of 428 total)