Viewing 15 posts - 4,021 through 4,035 (of 5,111 total)
March 29, 2017 at 9:26 am
March 29, 2017 at 8:56 am
Concerning that someone who has probably created at least 100 topics on this forum is now asking what ISNULL, MAX and CAST "means".
March 29, 2017 at 8:12 am
Firstly, that query is incomplete, there should be a further Right Parenthesis at the end of it. (there's also no FROM clause, but I'm ignoring that).
If we break...
March 29, 2017 at 8:10 am
On a totally unrelated note, why has our webdev suddenly decided he wants all of his data unpivoted >_< ARGH.
March 28, 2017 at 9:25 am
So the data isn't already in SQL? Do you not use a Pivot table in Excel already then? These are generally pretty quick, and the direction my thought was going...
March 28, 2017 at 7:51 am
Do you have to do this in T-SQL? Could you, instead, for example, use Reporting Services or Excel to do your Pivot for you?
T-SQL can Pivot, but you...
March 28, 2017 at 7:25 am
March 28, 2017 at 6:12 am
March 28, 2017 at 3:09 am
In the Paramter properties, in the advanced pane, change Refresh data when the parameter changes to never refresh. You'll have to physically refresh it then.
March 28, 2017 at 3:00 am
Is this along the lines of what you're looking for?DECLARE @Sku VARCHAR(7), @NewPrice DECIMAL(8,2);
--Set your parameter values
UPDATE Product
SET Price = @NewPrice
WHERE SKU...
March 27, 2017 at 9:31 am
What information are you trying to get out of the xml? What do you want your output data to look like?
March 27, 2017 at 9:18 am
I might being silly here, but what does you're sub query have to do with your outer query? As far as I can tell, every row in the AdminProduct table...
March 27, 2017 at 8:14 am
Viewing 15 posts - 4,021 through 4,035 (of 5,111 total)