Viewing 15 posts - 2,461 through 2,475 (of 4,820 total)
The solution depends heavily on exactly how the data is stored. If your customers table has one row for each app it's associated with, that's one solution, whereas if your...
July 3, 2017 at 10:11 am
Most of the data tables I've seen with pricing information are first based on a specific item. In most cases, the database will have an ITEM table, that has a...
July 3, 2017 at 8:58 am
Seems like you'll have to use that Excel method. Perhaps you can make the leftmost cell in the "parameter table" a drop down with all your servers as drop-down values?
July 3, 2017 at 8:34 am
m.awadallah92 - Monday, July 3, 2017 4:34 AMAny suggestion is appreciated.Thank you
Best,
Majdoleen
To be honest, we've given you the same suggestion any number...
July 3, 2017 at 8:12 am
Add File isn't what you need. Attachment is.
July 3, 2017 at 7:45 am
July 3, 2017 at 7:26 am
First, we really need to know what database version you are working with, as this is a SQL Server 2016 section of this forum. We also need to know more...
July 3, 2017 at 7:09 am
I was presuming that the SQL code you posted originally, which contained a number of latitude and longitude values, was the polygon representing the boundaries of your location. If that's...
July 3, 2017 at 7:03 am
Here you go:--============SQL===================
DECLARE @cols AS NVARCHAR (MAX),
@query AS NVARCHAR (MAX);
SELECT @cols = STUFF(( SELECT ',' + QUOTENAME(LEFT(DATENAME(MONTH,[Month]),3) + '-' + RIGHT(DATENAME(year,[Month]),2))
FROM ForeCastData...[Data$]
WHERE [Status] = 'Order'
AND MONTH([Month]) >=...
July 3, 2017 at 6:01 am
Joe,
That kind of solution is dependent on the data always being structured with exactly the same number of elements per unique category. While it works for what was...
June 30, 2017 at 2:01 pm
Stripping out tags of that nature is fraught with all kinds of potential "gotchas". Especially when at least one of them is in the category of "improperly formed". However, if...
June 30, 2017 at 1:43 pm
I have a subreport grouped by EdStatusName. The subreport is counting the number of patients in...
June 30, 2017 at 12:06 pm
June 30, 2017 at 12:03 pm
June 30, 2017 at 11:59 am
Viewing 15 posts - 2,461 through 2,475 (of 4,820 total)