Viewing 15 posts - 1,831 through 1,845 (of 2,062 total)
Accoring to the books online, error 208 = invalid object name
Are you specifying the owner of the stored procedure when executing it?
Like
EXECUTE dbo.USP_TESTING
instead of EXECUTE USP_TESTING (looks for an object...
November 10, 2005 at 5:08 am
can you remove the @ at
cmd.Parameters.Add("@login", SqlDbType.NVarChar, 255) ...
I guess ado adds it by itself.
November 9, 2005 at 10:38 am
there is a "split" function in the scripts section that is able to split a string in seperate items
A stored procedure could
1) insert the splitted items in a temporary table
2)...
November 9, 2005 at 10:35 am
Without affecting the final result -> means the same result at the end <> the same path used to get the same result.
inner join only red and marbles-> collect all marbles from...
November 9, 2005 at 10:16 am
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
Viewing 15 posts - 1,831 through 1,845 (of 2,062 total)