Viewing 15 posts - 1,816 through 1,830 (of 2,043 total)
till I find some reference
The reason why a restriction on the join probably performs better because it eliminates (some) rows SQL server has to retrieve / compare. This results in...
November 9, 2005 at 1:25 am
you can put the anti-open in the autoexec macro
If this one exists, it will be executed first.
Have a look at securing Access sites how about to hide the main...
November 8, 2005 at 10:55 am
In that case, contact the creator/vendor of the application and have those errors checked on severity.
November 7, 2005 at 10:18 am
1) Is there a firewall in between (like xp sp 2 firewall)?
2) Can you connect via ipadres\instance name?
November 5, 2005 at 8:19 am
hmm
normally a fresh install of sql server allows buildin administrators (local administrators of a pc) to login via windows authentication.
November 5, 2005 at 8:16 am
What is the estimated query plan?
Is there an index on AT1.Field2 and BT1.Field2?
Is it the only statement running on database B (since MSDE has quite some limitations)?
These would normally result in...
November 5, 2005 at 6:57 am
Login failed for user SA is sql authentication.
Sure you haven't changed the password for SA?
Can you login using windows authentication?
November 5, 2005 at 6:44 am
Also have a look at the CASE statement (acts like an if).
Also consider splitting up your processing to set-based solutions.
example:
SELECT 'ABC' WHERE myfield1='A'
SELECT 'DEF' WHERE myfield2 ='B'
SELECT
CASE myfield1='A'...
November 5, 2005 at 6:40 am
syntax 2 has more chance to perform better and it is more readable.
since you use inner joins, you could trim it to
SELECT RTrim(CONTACT.LName) + ', ' + CONTACT.FName AS 'Contact...
November 5, 2005 at 6:31 am
Sure you are right-clicking on a stored procedure since the menu is context-sensitive?
November 5, 2005 at 6:21 am
if you use AWE you have to set memory SQL Server to a fixed amount (no dynamic allocation)
second you can't rely on the taskmanager to view its memory usage, use...
November 3, 2005 at 5:10 am
1)Where exactly you have that BOF EOF is true?
2)Try to name your field instead of using .*. This prevents returning unwanted columns, being more clear of the fields requested.
2)Try specifying...
November 2, 2005 at 7:07 am
Have you rebooted the OS between changes?
November 2, 2005 at 6:42 am
Viewing 15 posts - 1,816 through 1,830 (of 2,043 total)