Viewing 15 posts - 9,766 through 9,780 (of 15,381 total)
Adi Cohn-120898 (12/26/2012)
Adi
edited: Sorry, just had a look at it. It does seems to work. According to the where clause one...
December 26, 2012 at 8:14 am
Golfer22 (12/25/2012)
What precedence...
December 26, 2012 at 8:11 am
yuvipoy (12/26/2012)
I am having a condition that i need to create tables on run time that is
Say for customer 1, if logins he will be giving some data which is...
December 26, 2012 at 8:00 am
Where is the encrypted data being decrypted? Is all the encryption handled in the application or in the database?
December 26, 2012 at 7:53 am
SQL_Kills (12/26/2012)
First of all I hope everyone has had a good Christmas!
Just wanted to know if anyone documents there table using MS_Description? I'm struggling to think how much detail...
December 26, 2012 at 7:44 am
edward_hall76 (12/25/2012)
December 26, 2012 at 7:41 am
geoffrey crombez (12/21/2012)
when I use the READ_COMMITTED_SNAPSHOT and use DELETE FROM table the other session is not locked when SELECTING data.
However when I use TRUNCATE TABLE it does block the...
December 26, 2012 at 7:31 am
Adi Cohn-120898 (12/26/2012)
Am I missing something? Seems to me that this should work:
select cStudentID, cCurrentGradeCode, cAnticipatedGradeCode
from #temp
where cCurrentGradeCode <> '99' or cAnticipatedGradeCode <> '99'
Adi
According to the requirements that won't...
December 26, 2012 at 7:19 am
imaceo58 8163 (12/24/2012)
My table definition is...
December 26, 2012 at 7:15 am
Again...what is the datatype? The best you are going to get is pure speculation unless you give us the whole picture.
December 21, 2012 at 3:22 pm
MyDoggieJessie (12/21/2012)
Ninja's_RGR'us (12/21/2012)
I get them just fine.
I get them, they're just coming in several hours after-the-fact, last night it was after 10pm CST before I got post notifications from 4-5pm...
December 21, 2012 at 2:53 pm
MyDoggieJessie (12/21/2012)
Lynn, the actual execution plan is the first first attachment in my original postBTW - what is up with SSC today not delivering notifications for posts???
I thought it was...
December 21, 2012 at 2:41 pm
adonetok (12/21/2012)
For example, in some cell of varchar column, data is "0", "6"... but...
December 21, 2012 at 2:39 pm
Here is another way.
select t.* from #temp t
join #temp t2 on t.cStudentID = t2.cStudentID
where t2.cCurrentGradeCode <> '99' or t2.cAnticipatedGradeCode <> '99'
order by t2.cStudentID
December 21, 2012 at 12:33 pm
Excellent job posting ddl, sample date and desired output!!! I wish everybody would post their questions like this.
Here is one way to do this.
select * from #temp
where cCurrentGradeCode + cAnticipatedGradeCode...
December 21, 2012 at 12:31 pm
Viewing 15 posts - 9,766 through 9,780 (of 15,381 total)