Viewing 15 posts - 7,711 through 7,725 (of 14,953 total)
Start out with the assumption that it's an innocent error. Your boss may not even know it's not a licensed copy. Alert him to the issue, pointing out...
November 18, 2009 at 8:21 am
Nadrek (11/18/2009)
Jeff Moden (11/17/2009)
You and another poster said about the same thing... I'm going to have to give it a try. Although it's not likely to have 8000 spaces (almost...
November 18, 2009 at 8:11 am
blandry (11/18/2009)
November 18, 2009 at 7:51 am
Elliott W (11/17/2009)
November 18, 2009 at 7:27 am
John Rowan (11/17/2009)
November 18, 2009 at 7:19 am
Again, the problem with replacing SQL with a more "relational" database engine and language is that, despite numerous attempts to do so, nobody has been able to come up with...
November 18, 2009 at 7:11 am
You're welcome.
November 18, 2009 at 6:53 am
It hasn't been a problem in over a decade, but that doesn't stop lots of DBAs from thinking it is one.
I've done a lot of load and speed testing with...
November 17, 2009 at 2:14 pm
The problem I've seen is that every non-relational data engine I've tested has had worse problems than SQL RDBMSs do. Sure, some of them solve some of the problems...
November 17, 2009 at 2:09 pm
It won't let you install SSMS? That seems strange. Did it give you an error message on that?
November 17, 2009 at 1:58 pm
Are you trying to figure out how many rows of each column are null, vs how many have each distinct value?
You won't be able to get that from metadata. ...
November 17, 2009 at 11:39 am
Try replacing your final select with:
;with CTE as
(SELECT ResultID ,
QuestionID ,
OptionTextboxValue ,
...
November 17, 2009 at 11:37 am
Use cursors when you need to iterate through databases and tables where the command isn't something that can be written as a single T-SQL command.
For example, if you want to...
November 17, 2009 at 11:32 am
What does "cope with" mean in this context?
Do you mean you want each of those combinations to be handled differently? If so, how?
November 17, 2009 at 10:44 am
Yes, it can.
But I'm not clear on what exactly you are trying to do here. Are you trying to select all the rows that contain two spaces? If...
November 17, 2009 at 10:12 am
Viewing 15 posts - 7,711 through 7,725 (of 14,953 total)