Viewing 15 posts - 961 through 975 (of 3,348 total)
Deprecated means that Microsoft has announced that the feature "will be removed in a future version".
(And based on my experience with some deprecated features, the actual description should probably read...
February 2, 2016 at 1:12 pm
Scripts are loaded and executed by the application code, not by SQL Server. The only thing SQL Server sees is batches of statements being submitted.
So no, there is no way...
February 2, 2016 at 1:07 pm
Note of warning to ramachandran narayanan:
The solution posted by chalam87 (which is about equal to a solution posted to one of the other locations where you asked this question) will...
February 2, 2016 at 1:05 pm
wendy elizabeth (2/2/2016)
What is EAV design? The date value needs to be used to keep the correct group of values.
First two hits on Google:
https://en.wikipedia.org/wiki/Entity%E2%80%93attribute%E2%80%93value_model
http://programmers.stackexchange.com/questions/93124/eav-is-it-really-bad-in-all-scenarios
If you want more help to get...
February 2, 2016 at 1:02 pm
Based on the title I am going to assume that you actually want to update data in a table.
You already got some very clever solutions based on smart calculations using...
February 2, 2016 at 12:52 pm
Here is a post that (a.o.) explains the risks of using SET TRUSTWORTHY ON: http://sqlity.net/en/1701/the-trustworthy-database-property-explained-part-2/%5B/url%5D.
It also explains that in most cases, using the TRUSTWORTHY property is not required. Just easier.
February 2, 2016 at 12:39 pm
Ed Wagner (2/1/2016)
J Livingston SQL (2/1/2016)
did these responses answer your question?http://stackoverflow.com/questions/35123166/how-to-list-code-in-2-separate-columns-using-a-sql-query
All these questions on different forums and no clear definition of how to build the output. Posting how to...
February 1, 2016 at 3:23 pm
(deleted - had not read the post well enough so my response made no sense)
February 1, 2016 at 3:18 pm
movvap (2/1/2016)
So, if I understand using N in front of the single quotes like N' ' is recommended as oppose to just the single quotes with...
February 1, 2016 at 3:14 pm
Orlando Colamatteo (2/1/2016)
sqlinterset (2/1/2016)
Earlier there was no index, but now one non-unique, non-clustered...
February 1, 2016 at 3:08 pm
Bob JH Cullen (2/1/2016)
If I want to check that any data in that column must be greater than 10
(Emphasis mine)
And there's the rub. A NULL is not data. A NULL...
February 1, 2016 at 1:36 pm
You were not rude, just incomplete.
And you still are. Please check out the link J Livingstone posted. Then post sample data (CREATE TABLE and INSERT statements) and expected results.
Make sure...
February 1, 2016 at 1:31 pm
movvap (2/1/2016)
I just ran the below query with out the N in the country + ' ' + coalesce(region, N' ') + ' '+ city...
February 1, 2016 at 1:22 pm
Yes, this can be done. Based on my understanding of your requirements, you would need the following ingredients:
* Two CTEs. One for the code 1 rows, one for the code...
February 1, 2016 at 1:13 pm
Viewing 15 posts - 961 through 975 (of 3,348 total)