Viewing 15 posts - 436 through 450 (of 595 total)
quote:
...Profiler your database for quite period time and feed the result into Index Tuning Wizard to identify the columns that need to...
May 6, 2003 at 12:29 pm
Unless I am mistaken, something in your SQL just doesn't make sense. This part:
(Select top 1(traveler.travelerid)
from Traveler
where traveler.travelerid = workhistory.travelerid
order by traveler.travelerid) as Traveler --
doesn't...
May 6, 2003 at 12:25 pm
quote:
...I think searching all my sp's for JOIN statements, and indexing any FK keys found there would be a better optimization. In...
May 6, 2003 at 9:00 am
Please post the schemas for both the access table and the sql server table. This will help identify likely troublespots. Thanks.
May 6, 2003 at 8:48 am
While that advice is a decent starting point; i.e. first look to foreign key fields used frequently in joins to place indexes on.
However, beware putting indexes on any field (foreign...
May 6, 2003 at 8:40 am
Please post the code so that we can analyze...
Thanks
May 5, 2003 at 12:18 pm
Go ahead and post your ASP script and I will take a look...
May 5, 2003 at 9:01 am
You're almost there:
CREATE PROCEDURE MyTransProc
@Param1 DataType
AS
BEGIN TRANSACTION
-- do update/delete
IF @@ERROR <>...
May 5, 2003 at 7:09 am
Here's the link you'll need. Sorry for the wait...was on holiday...
http://www.devguru.com/Technologies/vbscript/quickref/formatnumber.html
May 5, 2003 at 6:17 am
As for number 2:
I would do the formatting of the decimal in your ASP code. But if you really NEED to do it in SQL, you must do a...
April 29, 2003 at 12:42 pm
Ah, such is the way of business... Frustrating, isn't it? I can only recommend that you try to keep regular backup scripts of the schema, so that if they...
April 29, 2003 at 10:09 am
quote:
...protect against sql-injection...
Look into the proper use of QUOTENAME function to protect your scripts. ...
April 29, 2003 at 7:29 am
Could be any number of things, but it looks like this guy has same issue...
April 29, 2003 at 6:29 am
Sort of. If I understand you're situation correctly, you are giving the user the ability to add multiple funds to a fund program through your application. I would...
April 29, 2003 at 6:17 am
Viewing 15 posts - 436 through 450 (of 595 total)