Viewing 15 posts - 1 through 15 (of 221 total)
And after an upgrade, 2016 is installed and seems to work as intended 🙂
November 9, 2016 at 6:42 am
The fix would seem to be 2016.... it does the same in 2014 and 2012, I''ve moved to Win10, so 2008r2 isn't officially supported. Grr!
November 9, 2016 at 5:52 am
I've just seen that but it doesn't actually seem to be an option in 2014... not sure if it's only in 2012 or 2016 :/
This suggests it's in 2016:...
November 9, 2016 at 5:25 am
This can be ignored now - but should anyone else have this issue - check your DFS replication! - Multiple replication routes and different timestamps on different servers, ouch. Being...
October 21, 2016 at 1:10 am
Thanks for the reply! It's still a problem which I'm just living with tbh, accepting that I have to whizz through a report and change the column headings. Usually it's...
January 6, 2015 at 4:35 am
The 'wrapping' seems to work okay:
CREATE PROCEDURE Proc_Report AS
EXEC Proc_Product
Obviously they aren't called that but you get the idea - the Proc_Product has about 5-6 parameters, by doing it this...
December 4, 2013 at 2:15 am
What I'm saying is there's a proc happily in use in another situation which already has a bunch of parameters, all of which have defaults set already, I'd rather use...
December 4, 2013 at 2:04 am
Thanks, I think it was a volume of data issue, I tried with a different query limiting the results set, once I hit about 115,000 rows of data the XML...
November 21, 2013 at 3:56 am
Not that I thought it would, however, I've run this against every column in the output (dumping it to a table)
SELECT * from TableName where ColumnName like '%' + ''...
October 25, 2013 at 4:40 am
With such a simple report I decided to make it again, it does have 8 subscriptions against it, which still seem to be there after deleting it and deploying a...
August 30, 2013 at 7:36 am
Right, so I *can* use profiler for this, guess what, it's identical in all three cases except for hte ID!
exec sp_executesql N'SELECT * FROM tbla
WHERE ID = @ID',N'@ID int',@ID=4
Running what...
August 30, 2013 at 5:50 am
Thanks for the replies guys, on reflection I think a 'meta table' of the collected tables of results might be the way to go, something which can be built up...
August 19, 2013 at 10:28 am
Thanks, that looks like it could be useful! I did some searching after I posted, I see red gate do do a sql DATA compare, which I'm currently road testing...
August 16, 2013 at 8:17 am
It seems more popular to do this with a CTE now, however, I tend to use a mix of the CTE and FOR XML approach sometimes, here's a FOR XML...
July 25, 2013 at 2:56 am
I'm glad you've confirmed that - when I saw the results changed I doubted what I knew about optimize for unknown - I certainly didn't expect that. It seems I...
July 24, 2013 at 2:50 am
Viewing 15 posts - 1 through 15 (of 221 total)