Viewing 15 posts - 1,636 through 1,650 (of 2,051 total)
Each time the underlying tables are dml modified the view needs to be recompiled.
Why are you using drop view instead of alter view?
February 8, 2006 at 10:26 am
You're welcome.
Make sure the antivirus isn't scanning the ldf, mdf,ndf files.
February 6, 2006 at 3:46 pm
That is really weird.
What is the service pack of sql server & your client tools?
OS is up to date?
Any antivirus software present?
February 6, 2006 at 2:37 pm
You can use the sp_who2 stored procedure to check the current connections from time to time. It runs much faster than enterprise manager activity.
You can also monitor a lot of...
February 6, 2006 at 2:26 pm
SELECT a FROM testTable -- works
SELECT a.a FROM testTable a INNER JOIN testTable b ON a.a = b.a -- does not work
Is there an error message or what do you mean with does not work?
February 6, 2006 at 2:16 pm
Sandy,
There are many reasons to use stored procedures instead of concatenating strings to create the command. One is performance (by caching query plans), second is security (see sql injection attacks),...
February 6, 2006 at 1:44 pm
What is BDE you are talking about?
So Ado works with sql authentication?
February 6, 2006 at 1:32 pm
Keep in mind, to fix the problem however, I do not need to restart SQL Server box, just the IIS Server. Not sure if that makes a difference or not.
It...
February 6, 2006 at 1:30 pm
Thanks for the info. So the problem is reduced to a specific table.
Not sure if SET TRANSACTION ISOLATION LEVEL READUNCOMMITTED propagates to a linked server.
If you use the sql profiler,...
February 6, 2006 at 11:06 am
That can be the case when SQL Server is set to Windows Authentication only.
In mixed mode you can login with a userid/password.
February 6, 2006 at 10:59 am
Are the execution plans the same on all server?
You can see how much memory uses with performance monitor & sql counters.
The new server, does it has the same RAID/SAN implementation?
Linked...
February 6, 2006 at 10:58 am
Could it be a timeout?
February 6, 2006 at 10:53 am
CREATE PROCEDURE dbo.USP_FIND_FREE_ROOM
(@ReqCapacity tinyint
,@StartDate datetime
,@EndDate datetime
,@NeedOHP bit=NULL /*0=not needed,1=needed,NULL=don't check*/
,@NeedAV bit=NULL
)
AS
SET NOCOUNT ON
SELECT DISTINCT RoomName FROM dbo.Room Room
INNER JOIN dbo.RoomCalendar RoomCalendar
ON Room.RoomID = RoomCalendar.RoomID
AND Room.Capacity...
February 6, 2006 at 10:43 am
I don't know the option but I would say not.
Have they supplied you with valid reasons why they want the option?
February 6, 2006 at 10:33 am
Viewing 15 posts - 1,636 through 1,650 (of 2,051 total)