Viewing 13 posts - 1 through 13 (of 13 total)
You sir, are a legend! Sorry for bumping a 6 year old post, but I have started getting this issue after installing some .Net and Visual Studio libraries which seem...
September 19, 2016 at 8:15 pm
Technically this isn't a bug per se. It primarily arises because of the various encodings of text files, this is not something that will ever go away and is well...
November 18, 2014 at 3:50 pm
HowardW (2/19/2014)
Are you sure the initial query is what you want? The distinct isn't necessary if the query is changed.
Are yes, I should have actually paid attention to what...
February 19, 2014 at 4:14 pm
I'm assuming what you are saying is that you have been copying from SSMS "Grid Output" and pasting in Excel. I know that the "Grid Output" option strips out new...
February 18, 2014 at 11:03 pm
TheSQLGuru (1/16/2014)
Not enough time to check, but does tempdb.sys.tables show temp objects that aren't yours? Also, does it provide a name that is "droppable"?
Yes, the name that is in...
February 18, 2014 at 10:39 pm
I would recommend against using row_number() when you are trying to use a SELECT DISTINCT query, as the row_number is evaluated before the DISTINCT meaning that whatever the DISTINCT is...
February 18, 2014 at 10:16 pm
This is a really old post, but is still the highest hit when it comes to searching google for this issue so I'll try to explain.
A code page in SSIS...
May 15, 2013 at 3:36 am
The bazaar thing is that I've tried looking at the sub-queries, I've looked at every field referenced in every table, including looking at each and every implicit conversion. I would...
April 19, 2013 at 3:52 am
Thanks Sean,
I completely understand and if no-one can help I don't blame them, this question is more of a curiosity for me as I can work around the issue and...
April 17, 2013 at 6:41 pm
I've had to deal with this issue a lot, due to incomplete relationships in databases due to poor rules governing primary/foreign key relationships not being enforced. Another alternative is to...
November 25, 2012 at 4:19 pm
As I don't have any of my production systems on 2012 yet, I couldn't actually test out the functionality, but it useful to know about the additional features for when...
November 20, 2012 at 3:58 pm
I initially thought that this was an issue of the approximate storage of the FLOAT data type such that the 3.65 was actually being stored as 3.649999999... for example but...
November 18, 2012 at 6:34 pm
I'm supprised no-one has mentioned another implication of collation ordering and special characters that can be quite important; the impact on LIKE clauses that use set's of characters e.g.
DECLARE...
November 7, 2012 at 7:20 pm
Viewing 13 posts - 1 through 13 (of 13 total)