Viewing 15 posts - 6,361 through 6,375 (of 8,731 total)
You've received what you wanted, but here's some additional help. 😉
In the future, review the DDL and sample data that you post. You posted the same table twice and missed...
June 3, 2014 at 8:28 am
Thank you for your responses. 🙂
I understand the part of devs telling them how to do their work. On another server, where we have the permission, I've found a lot...
June 2, 2014 at 3:45 pm
Could I get your opinions on this issue?
http://www.sqlservercentral.com/Forums/Topic1576705-391-1.aspx
June 2, 2014 at 2:21 pm
If there's no WHERE clause, then those are CROSS JOINS producing cartesian products. Without join conditions, that will only return a lot of bad information.
Kill the one that wrote that...
June 2, 2014 at 2:08 pm
You should really stop believing in myths. Group by and Distinct are designed for different cases. When you're grouping use group by and when you want to eliminate duplicates use...
June 2, 2014 at 10:24 am
Can you explain further? maybe with examples.
An insert will insert rows, not columns. You might have a valid request but I'm confused.
June 2, 2014 at 9:47 am
Read the following article to find out how to do it.
http://www.sqlservercentral.com/articles/comma+separated+list/71700/
June 2, 2014 at 9:18 am
SQLRNNR (6/2/2014)
Sean Lange (6/2/2014)
Did the "Recent Posts" link get moved? I don't see it any more all of a sudden.Looks like it got removed. That was a useful tool.
I...
June 2, 2014 at 9:15 am
The best option would be to change the column to nvarchar(max).
The other option is to cast/convert your column during the query to nvarchar(max).
May 30, 2014 at 4:04 pm
Instead of throw, you could use a simple condition.;-)
DECLARE @ErrorMessage NVARCHAR(4000) ,
@ErrorMessageShort NVARCHAR(4000) ,
@ErrorNumber...
May 30, 2014 at 2:40 pm
Ed Wagner (5/30/2014)
May 30, 2014 at 2:13 pm
lorrin.ferdinand (5/30/2014)
There are other ways to skin the cat, depending on whether performance is an issue. Using some kind of a an actual table, CTE, or derived table...
May 30, 2014 at 12:40 pm
Sean Lange (5/30/2014)
KoldCoffee (5/30/2014)
May 30, 2014 at 12:31 pm
And be aware that if you have batch separators (GO) the variables will go out of scope.
May 30, 2014 at 11:19 am
Let's say that there's an app where you can select multiple items to generate a report. The web developer chooses to send a string as 'Item1,Item3,Item7' (which could be integers,...
May 30, 2014 at 10:42 am
Viewing 15 posts - 6,361 through 6,375 (of 8,731 total)