Viewing 15 posts - 9,781 through 9,795 (of 10,144 total)
You're welcome John, thanks for the feedback.
There's a searchbox in the top right corner of the forum pages, if you enter ISNUMERIC Moden, you will get a whole bunch of...
July 25, 2008 at 5:42 am
Hi Jude
The huge count is from the cross join (tblstudent_course, tblnew_entrants with nothing in the WHERE clause to join them).
All rows in tblstudent_course which don't have a match in...
July 25, 2008 at 5:40 am
Hi John
The shortfalls of ISNUMERIC have been discussed many times before. This should help:
http://www.sqlservercentral.com/Forums/Topic456023-338-1.aspx
Cheers
ChrisM
July 25, 2008 at 5:27 am
Hi Neal
I think there's some confusion here because of this...
delete ALL records from 'Column 0'
and this
delete ALL other [Column 0] records
I reckon what you mean to say is...
July 25, 2008 at 5:23 am
No worries Dave - beer time soon! 😀
July 25, 2008 at 5:10 am
The recommended method which Jack posted (where are ya, Jack?) will always run fast because the column in the WHERE clause on which it operates isn't subjected to any computation...
July 25, 2008 at 4:57 am
SELECT CONVERT(DATETIME, STUFF(STUFF('280908',3,0,'/'),6,0,'/'), 3)
July 25, 2008 at 4:39 am
Here's an excellent article which, even if it doesn't directly answer your question, will ensure that the method you are using for writing to Excel from SQL Server is appropriate...
July 25, 2008 at 4:28 am
Dave, I know you have a working solution for this problem now - but a different take on it gives this result:
SELECT FromID = CASE hc.Direction WHEN 'O' THEN pl1.location...
July 25, 2008 at 4:17 am
Here's a comparison between the popular method recommended by Jack, and the two methods suggested by Orion Pax.
--===== Create and populate the test table
CREATE TABLE #DateTest (TestDate DATETIME NOT NULL)
INSERT...
July 25, 2008 at 3:15 am
GuptaGoli (6/25/2008)
Could you please send me idea about online examination database design
Have a word with Vasaharshit, he's the expert on this question:
http://www.sqlservercentral.com/Forums/Topic532276-373-1.aspx
July 24, 2008 at 9:22 am
You're welcome. Might be worth your while taking a look at the following thread:
http://www.sqlservercentral.com/Forums/Topic532242-338-1.aspx#bm532442
July 23, 2008 at 5:53 am
It's a left join, Charles.
Return all rows from the table on the left side of the operator, and only matching rows from the table on the right.
SELECT a.*
FROM TableA...
July 23, 2008 at 5:37 am
DROP TABLE #Table_A
DROP TABLE #Table_B
CREATE TABLE #Table_A (Id CHAR(3), CourseId CHAR(3), [Group] CHAR(1), Weekday CHAR(1), Starttime CHAR(4), EndTime CHAR(4), Facultyid CHAR(6))
INSERT INTO #Table_A (Id, CourseId, [Group], Weekday, Starttime, EndTime, Facultyid)
SELECT...
July 22, 2008 at 10:14 am
Cheers Chris - it's pretty much what you'd expect really.
July 22, 2008 at 9:37 am
Viewing 15 posts - 9,781 through 9,795 (of 10,144 total)