Viewing 15 posts - 1 through 15 (of 47 total)
[SOLVED] An additional language can be added to the OS, without changing system default.
Then the correct locale can be selected in the souce connection and it takes care of nasty...
March 31, 2012 at 11:36 am
SSIS will provide the process for the import.
Should you wish to call this from a user interface, SSIS package can be deployed to a server and user application can call...
September 7, 2011 at 2:44 am
If only logins then login auditing is sufficient.
I believe it is held in the sql logs, which are rotated and a new one created every time sql is restarted, so...
September 6, 2011 at 7:51 am
I believe you can set the types during the running of the wizard steps.
If the files are text files with no headers then you could possible concatenate them all into...
September 6, 2011 at 7:47 am
Some more testing.
SELECT case when '²' COLLATE SQL_Latin1_General_CP1_CS_AS = '2' COLLATE SQL_Latin1_General_CP1_CS_AS then 'yep' else 'no' end
SELECT case when '²' COLLATE SQL_Latin1_General_CP1_CI_AS = '2' COLLATE SQL_Latin1_General_CP1_CI_AS then 'yep' else 'no'...
September 6, 2011 at 6:29 am
Thanks for the answers, the collation sounds good.
Is there a reason why Latin collation show both of these value as equal or is it 'just because'? 😉
September 6, 2011 at 5:46 am
You could set up the SSIS task to use a for-each loop take data from a set location (wherever the file is dumped to) on a regular basis.
After processing is...
June 15, 2011 at 6:05 am
From memory an excel connector will link to a sheet (unless you wish to programatically loop through them)
If Sheet1 goes to TableA, Sheet2 TableB etc... then I'd be inclined to...
May 8, 2011 at 9:53 am
If you can guarantee that to be the case then yes.
May 6, 2011 at 3:04 am
SELECT ITEM, REV, DATE
FROM table1
INNER JOIN
(
SELECT ITEM, MAX(REV)
FROM table
GROUP BY ITEM
) AS table2
ON table1.ITEM = table2.ITEM
AND table1.REV =...
May 6, 2011 at 2:02 am
Excel tries to be clever and will base formatting on a sample of the records it sees up-front.
If you want explicit formatting then some programming may be required.
There was a...
May 4, 2011 at 8:46 am
It may be that SSRS has a property that allows it to recognise CR/LF, which would be the easiest way.
Other than that, it's a case of 'messily' combining results then...
May 4, 2011 at 8:42 am
Need a teeny bit more info...
May 3, 2011 at 11:34 am
Can't help but think you're making things difficult for yourself.
Doing everything in a single tab would need some programming to work out where the first set of data ends and...
April 29, 2011 at 11:27 am
I assume you mean one resultset to each worksheet?
If so, you can set up the Excel destination to explicitly copy to a named worksheet; you would need three Excel destinations
April 29, 2011 at 1:46 am
Viewing 15 posts - 1 through 15 (of 47 total)