Viewing 15 posts - 3,166 through 3,180 (of 3,606 total)
CREATE RULE rl_BeforeNow AS @dtDate < GETDATE()
June 14, 2004 at 11:54 am
The date thing is an absolute pain
I have standardised on using yyyy-mm-dd as my date format in my applications and therefore my SQL always...
June 14, 2004 at 1:30 am
I take your point on upscaling webservers. I wish I knew more on the infrastructure side. Come to think of it, I wish I knew ANYTHING on the infrastructure side
June 13, 2004 at 11:43 am
Strictly speaking yes, it would be at risk from an injection attack, but not in the case of this particular CMS.
The execsp portion tells the CMS that this is a...
June 11, 2004 at 3:52 am
We develop a lot of UK government web-sites and accessibility is a major issue. That is, could this site be used by someone who is blind, can't use a mouse...
June 11, 2004 at 2:48 am
I don't agree because the topic id is not private information. In fact in the live application the topics are SIC codes so the SIC code is actually displayed on...
June 11, 2004 at 1:22 am
Steve,
It's your site but the only post that could have generated more flame would be a "do you think you a DBA should take a gun to work to deal...
June 10, 2004 at 2:14 pm
Has there been a sudden reduction in disk-space on your server?
What size are your log files? Are they expanding at some point during the backup?
We had a situation where a...
June 10, 2004 at 1:49 am
I have had this joyous thing happen on a couple of occassions.
I couldn't see anything wrong so I got the web page to write out the SQL statement that it...
June 7, 2004 at 8:35 am
I've had a couple of experiences like this.
I went into the server room to find a layer of smoke covering the top 6 inches of the server room, but no...
June 7, 2004 at 8:26 am
No, what I meant was that I started with two tasks.
1. Run the SQL to Access download DTS.
2. Run the copy of the downloaded file from the DB Server to...
June 4, 2004 at 8:53 am
From my own experience, if you have very large tables then rather than joining them together for a query you would do use temporary tables to store the results of...
June 4, 2004 at 1:24 am
Thanks Kathi,
That's what I did in the end and it seems to have worked OK.
I had a bit of a struggle getting DTS to set the precedence of the copy...
June 4, 2004 at 1:01 am
Why not use MSDE? There is an installation folder somewhere on the MS Office2000 CD.
This way you wouldn't have to butcher your existing code.
I've found that MS Access (running the...
June 3, 2004 at 1:12 am
CREATE PROC qryOrderInfo AS
SET NOCOUNT ON
SELECT orders.*,
products.ccode,
products.cname,
products.cprice,
oitems.numitems,
customers.*
FROM customers INNER JOIN orders
ON customers.custID = orders.ocustomerid
INNER JOIN oitems
ON orders.orderid=oitems.orderId
INNER JOIN products
ON oitems.catalogID = products.catalogID
qryOrders
CREATE PROC...
June 2, 2004 at 1:20 pm
Viewing 15 posts - 3,166 through 3,180 (of 3,606 total)