Viewing 15 posts - 37,996 through 38,010 (of 39,490 total)
I used EditPlus. Similar in that you can setup different types of documents and specify which keywords are highlighted, what are comments, etc. http://www.editplus.com
Steve Jones
February 18, 2002 at 2:48 pm
should be at the end of the line that specifies which instance of w2k you are launching.
Steve Jones
February 18, 2002 at 2:46 pm
Not real reason. People, I think, like it to be easy to read. Wrote something on abbreviations awhile back and someone hammered me on not being able to read the...
February 18, 2002 at 12:22 pm
February 18, 2002 at 12:22 pm
Chris,
Great article. One question, what Oracle reference did you use? Row level security is an interesting topic, and one I've dealt with in a few places. I should probably write...
February 18, 2002 at 10:58 am
FYI. Pls try to avoid dynamic sql if you can. There is often a better solution.
Steve Jones
February 18, 2002 at 10:44 am
February 18, 2002 at 10:41 am
One thing I can suggest is to remove the <>. Since you cannot test for a non-existence without scanning everything, these tend to be inefficient. If it's only positive numbers,...
February 18, 2002 at 10:37 am
You should have both procedures. When you open the code, the old object, still exists on the server. When you recompile into the new object, you are creating a new...
February 18, 2002 at 10:33 am
Get the results in text or better yet, run this from osql and pipe the results to a file. You will have the header, but that is easily deleted.
Steve Jones
February 18, 2002 at 10:13 am
February 18, 2002 at 9:55 am
Thanks for the update. For anyone reading, the correct way to do this is:
CREATE TRIGGER [tr_addtotimeline] ON [paper_orders]
FOR INSERT
AS
DECLARE @publication_id INT
DECLARE @delivery_date DATETIME
/* get pub_id and date from the...
February 18, 2002 at 9:52 am
I tend to agree with Andy from your description.
I've run some inventory things and for reconciliation and high accuracy, we used to use separate tables for calculations.
Steve Jones
February 18, 2002 at 9:48 am
Yikes. Can't see doing that. I'd have to strangle someone if they insisted on my sending them a db to update.
Steve Jones
February 16, 2002 at 11:03 am
February 16, 2002 at 10:56 am
Viewing 15 posts - 37,996 through 38,010 (of 39,490 total)