Viewing 10 posts - 46 through 55 (of 55 total)
Looks like it is a known issue with SSMS 17:
https://connect.microsoft.com/SQLServer/feedback/details/3134389/sql-server-utility-explorer-missing-from-ssms-v17-0
October 25, 2017 at 5:56 am
If you could provide the code of your stored procedure, maybe one of us will be able to assist.
It is very difficult to give you an answer without seeing...
October 25, 2017 at 5:35 am
Thank you for all the feedback guys.
I'm glad my article was useful ??
June 19, 2017 at 1:38 pm
Thanks Martin
I will give it a try and see if it resolves the issue.
Kind regards
Paulo
February 8, 2017 at 1:52 am
Using human-readable formats (eg. 20160913) for dates and times is a much better approach. These dates can very easily be converted and are much easier to read when one is...
September 12, 2016 at 11:09 pm
I found the problem.
I wasn't combining PeriodsToDate with ATL into a single SET within the SUM function.
The second SUM line should be as follows:
SUM((PeriodsToDate([Date].[Financial Dates].[Financial Year], ParallelPeriod([Date].[Financial Dates].[Financial Year], 1,...
February 23, 2016 at 10:24 pm
A good place to look for design tips is the Kimball Group:
February 23, 2016 at 9:57 pm
Do you need to see the reasons in your "Production.DownTimeReason" table?
If not, you can create a CTE (Common Table Expression) or a #table (temp table), into which you insert the...
February 4, 2015 at 3:06 am
Not sure if I understand the problem 100% but perhaps you can join the first two tables using a FULL OUTER JOIN?
You would then see all products that match their...
February 4, 2015 at 2:24 am
Just a wild stab in the dark, but I think you want something like this:
SELECT
Orders.OrderDate,
Orders.OrderId,
Orders.OrderNotes,
Orders.Custom_field_vehicleinfo,
Orders.Salesrep_CustomerId,
OrderDetails.ProductCode,
OrderDetails.ProductName,
Products.CustomField4
FROM
Orders
INNER JOIN
OrderDetails
ONOrders.OrderId = OrderDetails.OrderId
INNER JOIN
Products
ONOrderDetails.ProductId = Products.ProductId
WHERE
Orders.OrderStatus IN ('Pending', 'Processing', 'New')
ORDER BY Orders.OrderDate ASC
January 21, 2011 at 5:07 am
Viewing 10 posts - 46 through 55 (of 55 total)