Viewing 15 posts - 14,821 through 14,835 (of 15,381 total)
Of course that subquery returned more than 1 value. If can post some ddl, sample data and exactly what you are tying to do I will help.
I don't understand that...
April 8, 2011 at 2:06 pm
Are you asking how to get a list of them or how best to display it in your application? If it is the first, you already have that knowledge from...
April 8, 2011 at 1:39 pm
Hi Jim welcome to SSC. The question you pose is pretty vague but I can try to give my version of an answer on a few items.
jimw923 (4/8/2011)
Using SQL Server...
April 8, 2011 at 1:35 pm
You have a couple choices to make this work. The case statement in a where clause the way you trying isn't going to work. If the proc is pretty small...
April 8, 2011 at 1:27 pm
Yeah I was already formulating my response about a nice easy one for a friday especially after yesterday's challenging question and even more challenging discussion. Well the question really was...
April 8, 2011 at 7:08 am
You could also get the big query to do what you want by using the big case statement instead of the derived column name.
April 7, 2011 at 10:55 am
Another suggestion is to use your end date to calculate the Fin_Year instead of bring forced to change this every year
select
case
when MONTH(AIMTC_ProviderSpell_End_Date) > 4
then CAST(year(AIMTC_ProviderSpell_End_Date) - 1...
April 7, 2011 at 10:53 am
First thing is you might consider making your select statement a lot simpler
select a.id as a_id, a.datetime as a_datetime, b.id as b_id
from atest_detail b
left outer join atest_header a on...
April 7, 2011 at 8:08 am
Good question Wayne! Need more coffee after missing this one. 😛
April 7, 2011 at 7:39 am
There are lots of people on here willing to help but we need something to go on. We are not familiar with your project and we can't see you screen....
April 6, 2011 at 12:50 pm
Then in the spirit of your name you can try this one :-D:-D:-D
April 5, 2011 at 1:14 pm
File size of 300MB shouldn't be an issue with streaming. You can get 600MB into a file stream on a 32bit system in .NET. If you are properly disposing of...
April 5, 2011 at 11:15 am
I didn't even really read the create table statements. I saw the insert at the bottom with a StudentID, skimmed up and saw it referenced the students table and that...
April 5, 2011 at 9:55 am
Sounds you were not releasing the files correctly. If you streamed them and the properly disposed you should never have any issue reading a file just about any size.
If...
April 1, 2011 at 9:03 am
No matter how you slice and dice this you are going to have some challenges. You are essentially trying to get a partially sorted result and this just simple isn't...
April 1, 2011 at 8:48 am
Viewing 15 posts - 14,821 through 14,835 (of 15,381 total)