Viewing 15 posts - 1,921 through 1,935 (of 2,043 total)
Odd issue, but thanks for posting
October 10, 2005 at 11:04 am
1)There is no difference between a view and a simple select for performance.
Beware of making views based upon views ->effect performance (possible to much data joined)
2)Views usually haven't and don't need...
October 10, 2005 at 3:00 am
1) take a backup of the current version
2)Try compacting & repairing in Access + recompile the code
3)See if everything got back to normal
4)Try decompiling your vba modules (start Access with...
October 10, 2005 at 2:48 am
This asks for a normalisation of the database. http://www.tutorialized.com/tutorial/Normalisation/7433
October 9, 2005 at 4:01 am
This is because you rely on implicit conversion between varchar and datetime
by default convert/cast use the mon dd yyyy hh:miAM format
when casting datetime to varchar
October 7, 2005 at 11:13 am
1) the EXEC sp_executeSql @SqlString
can be dropped, no need for dynamic sql here
2)There can be a few inner joins
3) The owner of the tables should be specified for better performance
SELECT...
October 7, 2005 at 11:02 am
What method/program you use to connect to your MSDE server?
October 7, 2005 at 5:52 am
1)Always gives the fields a name instead of using SELECT *
INSERT INTO dbo.ORDERS
(Id_record, Id_title, Customer, Order_ID)
SELECT Id_record, Id_title, Customer, @random
FROM dbo.Cart CART
WHERE Cart.Customer = @user
The query analyzer can script...
October 7, 2005 at 5:51 am
You indeed have to update the client tools of who connects to sql server sp4.
October 6, 2005 at 2:14 pm
CREATE TRIGGER TR_ASSIGNMENT_INSERT on dbo.Assignment
FOR INSERT,UPDATE
AS
SET NOCOUNT ON
UPDATE dbo.Workorder
SET user=INSERTED.USER /*INSERTED CONTAINS NEW OR CHANGED DATA*/
FROM dbo.Workorder Workorder
inner join INSERTED /*LINK WITH WORKORDER*/
ON INSERTED.WorkorderID=Workorder.ID
October 6, 2005 at 2:12 pm
Not totally sure but how are the sql servers registered on her enterprise manager (edit registration)
1)Display SQL Server state is on?
Perhaps EM tries to log in to verify the current...
October 6, 2005 at 2:05 pm
I would see the book online for that topic.
If there was a large transaction going on ( like altering a table in enterprise manager) it will be rolled back (...
October 5, 2005 at 1:42 pm
1)Is there any application active on the server except Windows 2003 and sql server? (Antivirus, IIS,...)
2) Ms full search is enabled?
October 5, 2005 at 1:35 pm
1) Does it have a lot of recovering (rolling forward transactions) to do (see sql server logs)
2) It might be because of the tempdb is growing to its initial size
3) Anything...
October 5, 2005 at 1:12 pm
I wouldn't expect any problems leaving compatibility at 80, because there aren't major differences between sql server 7 and sql server 2000.
In 2000 they added user defined functions,changable collations and better...
October 5, 2005 at 1:07 pm
Viewing 15 posts - 1,921 through 1,935 (of 2,043 total)