Viewing 10 posts - 76 through 85 (of 85 total)
User Comment: I looked at both the http://www.asp.net and the http://www.instantasp.co.uk forums and I like the one at http://www.instantasp.co.uk best. It...
December 2, 2003 at 7:54 am
It's been a while since I used this but I think if you manually update the sysdatabases table and set the status field to 32768 (emergency mode) you will be...
November 14, 2003 at 7:30 am
Here's the final post in the thread that Jonathan referenced.
quote:
For us it is a dead issue now. The developers are...
October 22, 2003 at 8:37 am
quote:
I have a table and all records have a date.I want to select all records between two given months/years.
For example, all...
October 21, 2003 at 10:40 am
Eagles fly. Turkeys skydive.
October 21, 2003 at 8:35 am
Do the input parameters to the stored procedure cover all fields in the table? If not, you would need to use the following snippet to replace the UPDATE statement:
--...
October 15, 2003 at 8:29 am
Just wanted to clarify how DATEDIFF actually works. All DATEDIFF does is count the number of boundries crossed between the given dates.
DATEDIFF(yy, '12/31/2000', '1/1/2001') = ...
October 15, 2003 at 8:13 am
Same as NP but this will return only those members that have another member in their ZipCode.
SELECT p.PKCol, COUNT(m.PKCol)
FROM tbMembers m JOIN tbMembers p ON m.ZipCode = p.ZipCode
GROUP BY...
October 13, 2003 at 8:50 am
Since isNumeric returns a 1 for any REAL number and the original question was "how do I test for an INTEGER" you would need to use the following test
where isnumeric(substring(testField,...
October 10, 2003 at 1:36 pm
You can do as a5xo3z1 suggested. Create an Active-X DLL in VB then use the sp_OAxxx procedures to execute it's method(s). I've done it several times and it...
July 24, 2003 at 2:37 pm
Viewing 10 posts - 76 through 85 (of 85 total)