Viewing 15 posts - 1,051 through 1,065 (of 6,486 total)
If you expose it directly - it would likely be attacked continuously.
A few recommendations:
1. drop "classic ASP". it's unfortunately got a fair amount of weaknesses, making it...
March 9, 2012 at 12:39 pm
opc.three (3/8/2012)
Matt Miller (#4) (3/8/2012)
Eugene Elutin (3/8/2012)
OTF (3/8/2012)
Eugene Elutin (3/7/2012)
March 8, 2012 at 9:51 pm
Eugene Elutin (3/8/2012)
OTF (3/8/2012)
Eugene Elutin (3/7/2012)
March 8, 2012 at 9:13 am
Question would be: why are you looking to change the output column?
You have what looks to be a well-defined structure to bring in, which from your description seems to be...
March 8, 2012 at 7:50 am
SQLKnowItAll (3/7/2012)
March 7, 2012 at 2:40 pm
As to the original topic: be careful with the use of DATEDIFF. From your use case, using the DAY unit should be safe. You would start seeing...
March 6, 2012 at 11:01 am
Try it this way:
SELECT ItemId FROM Item WHERE ItemTypeId=1
INTERSECT
SELECT ItemId FROM Item WHERE ItemTypeId=3
March 5, 2012 at 2:31 pm
William Plourde (3/5/2012)
March 5, 2012 at 2:14 pm
John Mitchell-245523 (2/29/2012)
Matt Miller (#4) (2/29/2012)
February 29, 2012 at 9:50 am
John Mitchell-245523 (2/29/2012)
Kwisatz78 (2/29/2012)
The code isn't just one big update, it is several wrapped in a single transaction.
If it's all one transaction, batching it will have no effect. The...
February 29, 2012 at 8:10 am
djustice 20821 (2/24/2012)
February 24, 2012 at 8:43 pm
sturner (2/24/2012)
try this:
SELECT (your select list)
FROM AR_CUST_MAST a
INNER JOIN SO_PAST_INV_HEAD c ON a.CUSTOMER_NUM = c.CUSTOMER_NUM
AND c.SHIP_REF_DATE...
February 24, 2012 at 1:12 pm
Try adding the VALUE column to your index as an included value. As of now, if it uses the nonclustered index at all, if still has to make a...
February 24, 2012 at 12:33 pm
By chance - did you run your import several times?
I'd check each table to make sure you know what is really in there.
Also - you might care to check in...
February 24, 2012 at 12:27 pm
For simplicity of purpose - on your foreach question, I'd frankly create a foreach loop specific to each file type (since each file type will tend to have a slightly...
February 24, 2012 at 12:05 pm
Viewing 15 posts - 1,051 through 1,065 (of 6,486 total)