Viewing 15 posts - 1,036 through 1,050 (of 3,489 total)
when I said you had to install the 32 bit...
February 24, 2019 at 3:08 pm
Oh, okay. I'll give it a try. (Remember when MSFT used to be really explicit about which version of a program was installed and you could go to help>about and...
February 24, 2019 at 2:54 pm
Do I seriously have to create a DSN for this to work?
February 24, 2019 at 12:50 pm
Thanks Federico. I downloaded that and installed it,
I created a connection using the Source Assistant and could only connect to the database at all using the SSIS provider. But...
February 24, 2019 at 12:17 pm
February 23, 2019 at 1:26 am
Please post the table definitions for the relevant tables. What you're doing sounds way harder than this should be.
February 22, 2019 at 10:39 pm
Isn't it as simple as DIVIDE(COUNTROWS('OrderLineItems'),COUNTROWS('Orders')) ?
February 20, 2019 at 9:11 pm
February 20, 2019 at 2:20 pm
This?SELECT SortOrder, country, colour, amount
, DENSE_RANK() OVER (ORDER BY SortOrder) AS rn
FROM #testing
ORDER BY SortOrder
, Country
, Colour
, Amount
Oh wait,...
February 18, 2019 at 9:09 pm
February 18, 2019 at 5:52 pm
I wouldn't back up the structure to Access. There isn't a perfect 1:1 object mapping between the two. Why not just script out all the objects so you have all...
February 18, 2019 at 5:39 pm
In the below given schema and data, we need to find the time...
February 17, 2019 at 10:29 pm
This returns the first of the current month
SELECT DATEADD(month, DATEDIFF(month, 0, GETDATE()), 0) AS StartOfMonth
So you'd just add months to that.
February 15, 2019 at 4:40 pm
Not sure if this will help at all, but here goes.
Say you create one query that calculates the Numerator (and you include the grouping column you need, so you...
February 15, 2019 at 12:51 pm
In the outermost query (the first SELECT), you'd just do something like
SELECT [Aggregate1] / [Aggregate2]
FROM...
As long as the two values are correct in the source query,...
February 15, 2019 at 11:56 am
Viewing 15 posts - 1,036 through 1,050 (of 3,489 total)