Viewing 15 posts - 1,246 through 1,260 (of 2,052 total)
Interesting.
Thanks for sharing.
June 7, 2007 at 3:14 am
I would change 2 things
*Set rs2 = conn.Execute(sql)
While Not rs2.EOF
... This will hold locks on non-fetched data
to
set rs2=conn.execute(sql)
if rs2.recordcount>0 then
rs2.movelast
rs2.movefirst
While Not rs2.EOF
... all data retrieved, no remaining locks
* ...
June 7, 2007 at 1:34 am
We had a similiar problem before. It was solved when we enabled connection pooling. The connection(s) are closed when they are no longer needed?
June 6, 2007 at 2:51 am
Have you stresstested the raid-configuration of the 2005 sql server?
May 16, 2007 at 1:45 am
depends if the function is based on a datacolumn (needs calculation per record) or if the function is based on a condition (calculated once, calculated value is than a candidate...
April 28, 2007 at 9:39 am
The amount of reads are a good indication of I/O. Since it says 30000 instead of 110000 it should be faster. A look at the actual execution plan wouldn't hurt.
April 11, 2007 at 3:30 am
Are you connecting via ip or naming? Sql authentication or windows authentication?
April 5, 2007 at 1:35 pm
Have you found any info in the windows error log? (start->execute->eventvwr)
April 4, 2007 at 12:11 pm
not sure if this is the simplified version you want.
ALTER PROCEDURE [dbo].[get_SClinicals_list]
@DateFrom datetime='18000101', /*lowest possible*/
@DateToIn datetime='99990101', /*highest possible*/
@mName varchar(50)=NULL,
@ccName varchar(20)=NULL
AS
SET NOCOUNT ON
IF @mName is null...
April 3, 2007 at 12:32 pm
Mark,
Have you tried running the query using "query analyzer" instead of in enterprise manager?
If you have a job, you should also check if the account of sql agent has sufficient...
April 3, 2007 at 12:11 pm
Does Access 2003 have the latest service pack applied ?(To rule out some possible bugs)
April 3, 2007 at 12:08 pm
perhaps you can find some indication of the error in the windows event logs (searching on sql server).
Start->execute->eventvwr
April 3, 2007 at 12:07 pm
It is likely that the form is corrupt.
Have you recreated the form from scratch (since you imported some objects)?
March 30, 2007 at 6:44 am
There is a field Hostname you can place a filter on, but this will probably be the webserver.
Have you checked default connection-settings between test and production server?
Is there a difference...
March 5, 2007 at 11:31 am
I'm not familiar with informatica. The main issues we had with importing from oracle to sql server are dates<1800.
March 5, 2007 at 4:17 am
Viewing 15 posts - 1,246 through 1,260 (of 2,052 total)