Viewing 15 posts - 1,516 through 1,530 (of 2,044 total)
What version of Access are you using?
Are you using ado, dao,...?
March 13, 2006 at 11:01 am
*You could add some debugging code in your stored procedure.
Like adding a new row containing some state info.
*How is your server built up? OS, sql server and patch level,...
March 13, 2006 at 11:00 am
You have a few options:
SET PARSEONLY (connection setting)
SET NOEXEC (connection setting)
SET SHOWPLAN_TEXT (connection setting)
SET SHOWPLAN_ALL (connection setting)
What they do is described in the books online (BOL)
March 13, 2006 at 8:27 am
Can you provide us some background info.
Does it happen only on your pc?
What connectiontechnology are you using?
What version of sqlserver + patch level, on what OS and hardware does it...
March 13, 2006 at 8:23 am
The command you are looking for is SELECT INTO (see the books online)
Example
SELECT Shippers.*, Link.Address, Link.City, ...
March 13, 2006 at 8:22 am
Because sysindexes.rows,rowcnt does not contain real-time data.
I presume it is updated with the statistics.
March 11, 2006 at 4:35 pm
What technology you use to get your data ADO,DAO,.NET?
Is this in VB6,Access,.NET?
One of the 3 parameters of DLookup is probably the value you wish to look up.
*have a look at...
March 10, 2006 at 9:50 am
1) are the objects in the extended stored procedure properly released?
2) Sql server has a memtoleave area for extended procedures, perhaps it gets exhausted.
3) Is the cursor forward-only,read-only to minimise...
March 10, 2006 at 7:03 am
assuming access97
dim rs as dao.recordset
dim sqlstring as string
sqlstring="SELECT clinicianid from qryPatientCheck where ClinicianID= " & Me.ClinicianID.Value
set rs=currentdb.openrecordset (sqlstring)
if rs.recordcount>0 then
'found
else 'not found
end if
rs.close
set rs=nothing
March 10, 2006 at 6:58 am
Just a note
It assumes that FirstTreatment is always later than AssesmentDate.
Datediff is indeed more appropriate.
March 10, 2006 at 3:42 am
When you install sql server 2000 on a windows 2003 machine
ignore the warning that servicepack 3 is required.
Install sql server 2000, install servicepack 3 or higher. (otherwise 2003 only allows connections...
March 9, 2006 at 12:18 pm
what about
v=year([FirstTreatment])
w=year([AssesmentDate])
TimeOnWaitingList: ([x]-[y])+((v-w)*12)
March 9, 2006 at 12:03 pm
March 7, 2006 at 1:47 am
The same problem was in a thread only a week old. I'll see if I can find it
March 5, 2006 at 7:12 am
*can you specify with nolock for
SELECT .....
FROM master.dbo.sysprocesses WHERE hostname=host_name()
we don't want locking to occur in system tables
*for CREATE TRIGGER Via_Peticiones_TI ON dbo.Via_Peticiones
FOR INSERT
AS
specify SET NOCOUNT ON
March 2, 2006 at 2:04 pm
Viewing 15 posts - 1,516 through 1,530 (of 2,044 total)