Viewing 8 posts - 16 through 23 (of 23 total)
if you're confident about the state of the data, I'd test without indexes in the destination table. applying indexes to each insert/delete row adds overhead to the process. then have...
June 10, 2005 at 3:49 am
users typically only submit m/d/yyyy. SQL Server stores time as well. So, i create the date string equalizing the time then query
Create Proc p_Orders_GetByDateRange
(
@StartDate DATETIME
,@EndDate DATETIME)
AS
DECLARE @NewStartDate DATETIME
DECLARE @NewEndDate...
May 6, 2005 at 3:10 pm
It looks as though Remi's answer may be correct. ASP is late bound and dosen't know about the ADO constants unless you are including adovbs.inc OR added the ADO typlibe...
March 22, 2005 at 6:35 am
use Request.Cookies("CaseSensaTiveCookieName") to read it in.
use Response.Cookies("CaseSensativeCookieName") to write it back out after a successfull login.
--In SQL
open the table in design view and change the collation for the password collumn...
March 2, 2005 at 8:43 pm
it was setup when the connection was first defined. When EM was first registering it's connection to SQL Server, it was defined then. It's at that time that you could...
February 2, 2005 at 6:09 am
see the 'sp_OACREATE()' system stored procedure. this allows you to call COM api's.
There are also 2 techniques:
1. either you register it with COM(regsvr32)
2. or you install it in...
October 25, 2004 at 6:03 am
the docs at MS are wrong. You CAN'T install MSDE as a default instance...
July 26, 2004 at 1:00 pm
does xp_sendmail require admin privaledges?
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_xp_aa-sz_6hbg.asp
(watch for wrapping)
June 30, 2004 at 6:26 am
Viewing 8 posts - 16 through 23 (of 23 total)