Viewing 15 posts - 1,246 through 1,260 (of 2,044 total)
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
Someone circumvented this in a recent post. The trick was to create a view dbo.VW_NOW (name of choice)with as definition: select getdate() as today
From the function use select today from...
March 5, 2007 at 4:14 am
I assume it recompiles since there is an explicit command alter procedure.
March 2, 2007 at 12:16 pm
Have a trace running (sql profiler) at night monitoring for cpu-intensive queries?
Are these spikes or continuous (performance monitor on windows-system)?
March 2, 2007 at 12:11 pm
It could be a different execution plan between the stored procedure and the extracted sql code due parameter sniffing. The query plan could help here.
To capture the sql-statements you can...
March 2, 2007 at 12:09 pm
You could divide the delete in a set of smaller batches.
pseudocode
SELECT 1
WHILE @@ROWCOUNT>0
BEGIN
DELETE FROM test where id in (SELECT TOP 100 from test where deletecondition=true)
WAITFORDELAY ...
END
March 1, 2007 at 6:40 am
You might search the web on sp_attach_single_file_db. Make sure you have it backed up first.
March 1, 2007 at 6:33 am
There must be a more elaborate page than this one
February 20, 2007 at 12:46 am
Hello,
There is a page about locking in sql server 7,2000 where the key is described.
February 20, 2007 at 12:38 am
Viewing 15 posts - 1,246 through 1,260 (of 2,044 total)