Re: Which Server for CF???

2002-12-27 Thread Dick Applebaum
On Friday, December 27, 2002, at 12:54 PM, Ryan Kime wrote: > Drew, > > My .02 > > I wouldn't run a mission critical app on an unsupported platform. I agree with this, wholeheartedly! > I am all > for Apple gaining some market share in the server arena, but I > wouldn't let > them do it at my

Flash Components -List boxes/Trees - integration with CF(was cf list? )

2002-12-27 Thread Jason Miller
Hey list - I just had cleaned out my emails - I know some of us were just discussing tree and listboxes and some recordsets - These links are not cf tags and cf enabled - but can be easily modified. Some of these flash components load from simple text files for demo reasons - others from XML -

Re: Problem with Studio

2002-12-27 Thread John Allred
Michael, I installed DW 4 Ultra Dev sometime back, but it didn't hurt anything. I have uninstalled it, and I've uninstalled and reinstalled CF Server and CF Studio a couple of times. I did some diagnostics and discovered some registry errors related, I think, to MDAC, which I fixed with Norton Sys

RE: Displaying *.swf files

2002-12-27 Thread Mike Chambers
how much data is in your chart? mike chambers [EMAIL PROTECTED] > -Original Message- > From: Joe Eugene [mailto:[EMAIL PROTECTED]] > Sent: Friday, December 27, 2002 12:25 PM > To: CF-Talk > Subject: Re: Displaying *.swf files > > > Thanks..I think i got straight > pluginspage="http:/

RE: Best way to handle Checkboxes with Insert Query?

2002-12-27 Thread Rick Faircloth
Hi, Michael. No trick...I've always followed the normal syntax for CFINSERT and it's always worked. CFINSERT didn't seem to mind if the Checkbox formfields, when not checked, were missing and, of course, like you said, it handles the Autonumber field by itself...that field is not included in the l

RE: Best way to handle Checkboxes with Insert Query?

2002-12-27 Thread Michael Kear
Interesting you're abandoning CFINSERT, Rick. In all the time I've been using ColdFusion, I never once managed to make it work. I always got SQL errors. I assumed it was because I had a Identity primary key in my tables and CFINSERT wouldn't work without every field in the table being defined. (

Re: Which Server for CF???

2002-12-27 Thread Sean A Corfield
On Friday, Dec 27, 2002, at 15:11 US/Pacific, John Venable wrote: > Why is it not a very good server? There are plenty of reasons not to > use the > X-Serve for what he wants without making them up. Apple does not make > hard > drives, nor are the X-Serve's hard drives anything special, just > s

Re: Which Server for CF???

2002-12-27 Thread John Venable
Why is it not a very good server? There are plenty of reasons not to use the X-Serve for what he wants without making them up. Apple does not make hard drives, nor are the X-Serve's hard drives anything special, just standard Ultra ATA/100 drives that can be bought anywhere. It seems funny that you

RE: Best way to handle Checkboxes with Insert Query?

2002-12-27 Thread Rick Faircloth
Thanks for the tip, Jon. I'll check that out. I'm currently using PremiumSoft's "Navicat" frontend. It's doing a good job. I haven't had time to explore its finer functions... (I have found out it doesn't handle replication through its interface. That's something I have to tackle next, and was hop

Re: CFMX doesn't seem to like Oracle8 CLOB data

2002-12-27 Thread Sean A Corfield
Which Oracle driver are you using? The one that ships with CFMX or a newer one downloaded from Oracle Tech Net? If you're using CLOB/BLOB data extensively, I'd recommend looking into the OCI native drivers for Oracle 8i. On Friday, Dec 27, 2002, at 14:52 US/Pacific, Li Chunshen ((Don)) wrote:

CFMX doesn't seem to like Oracle8 CLOB data

2002-12-27 Thread Li Chunshen \(Don\)
Hi folks, Here's the scoop, System info: CFMX Prof. Edition on WinXP Prof. machine accesses a remote Oracle8 Database on Win2K Prof machine; the datasource connection has been tested to work; CLOB enabled; Long Text Buffer (chr) is set to 64000; Allowed SQL: SELECT and SP. DB info: The Oracl

Re: Which Server for CF???

2002-12-27 Thread Drew Harris
Ryan, Good point, perhaps I will scale back the Xserve and get a Dell too. I like that idea... One of each, the best of both worlds. Thanks, Drew BTW, Oracle on Mac OS X is free right now if you are a member of the Oracle Technology Network... And I sure do like free!!! On 12/27/02 2:54 PM, "Rya

Re: Best way to handle Checkboxes with Insert Query?

2002-12-27 Thread jon hall
MSSQL's Query Analyzer and DBArtisan both have functionality that will generate INSERT statements from a table. Saves a ton of time, I would hate to have to write every insert from scratch... I'm sure one of the MySQL frontends does something similar. -- jon mailto:[EMAIL PROTECTED] Friday, De

RE: Which Server for CF???

2002-12-27 Thread Adrocknaphobia Jones
Drew, The XServe is nice. But in reality, it's not a very good server. Considering you get stuck in the Apple monopoly. Since it's so small you can only use Apple hard drives. Which are of course overpriced. I'd buy a dell. You'll have more options, and probably save an arm and a leg. (But I woul

RE: Which Server for CF???

2002-12-27 Thread Ryan Kime
Drew, My .02 I wouldn't run a mission critical app on an unsupported platform. I am all for Apple gaining some market share in the server arena, but I wouldn't let them do it at my expense. If I was dead set on getting an Xserve (and could afford it), I would also be able to afford a test lab and

RE: Best way to handle Checkboxes with Insert Query?

2002-12-27 Thread Rick Faircloth
I know it's good that I'm learning SQL better and writing my own code for the updates and inserts instead of using CFUPDATE and CFINSERT... I'm just in the throws of agony having to go through 200 pages of code that I thought was finished and rewrite all the queries incorporating better practices t

Which Server for CF???

2002-12-27 Thread Drew Harris
I am having a dilemma and would appreciate some feedback. I need to purchase a new web server for an existing job... And to repurpose when the job is over. I am an Oracle guy, and an apple guy... So now that Oracle 9i is offered and supported natively on Mac OS X I am very happy. However, I also ha

RE: Best way to handle Checkboxes with Insert Query?

2002-12-27 Thread Ben Doom
I learned CF and SQL at the same time -- in fact, I learned SQL in order to do CF. My boss -- who had done SQL for a lot longer than he'd done CF -- responded to my inquiry about cfinsert like this: I don't know what the hell kind of code it produces, so I'll just write my own, thank you very muc

Simple Message Board Open-Source SourceForge Project

2002-12-27 Thread Tony Schreiber
Whew. Ok, SMB now has a sourceforge project: http://sourceforge.net/projects/smb/ If you are interested in become a member of this project please let me know (I'll need your sourceforge username to add you). I'll be prepping my existing code to upload into the cvs. Tony Schreiber, Senior Partn

RE: Best way to handle Checkboxes with Insert Query?

2002-12-27 Thread Everett, Al
> Using CFQUERY Insert Into and 's sure is a lot > more work than CFINSERT, It gives you better control. Two companies ago, our coding guidelines specifically prohibited the use of CFINSERT and CFUPDATE. I'm glad, too, because I learned to write better SQL. ~~

RE: Best way to handle Checkboxes with Insert Query?

2002-12-27 Thread Rick Faircloth
Thanks, Al. I appreciate the coding examples, too. Using CFQUERY Insert Into and 's sure is a lot more work than CFINSERT, but I'll trust everyone here that's it's important and necessary. Rick -Original Message- From: Everett, Al [mailto:[EMAIL PROTECTED]] Sent: Friday, December 27,

RE: Best way to handle Checkboxes with Insert Query?

2002-12-27 Thread Rick Faircloth
Thanks, Ben. That clears the air. Rick -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED]] Sent: Friday, December 27, 2002 12:18 PM To: CF-Talk Subject: RE: Best way to handle Checkboxes with Insert Query? : I've read on this list that it's recommended to use #IsDefined()# in

Re: Displaying *.swf files

2002-12-27 Thread Jason Miller
well - CF MX can use both 5 and 6 players - but it purely depends on what features you are using AND the syntax in the ActionScript as to what is actually required. jay Massimo, Tiziana e Federica wrote: Just the flash player - but not sure whether it requires flash player 6 or 5. If you pos

RE: Best way to handle Checkboxes with Insert Query?

2002-12-27 Thread Rick Faircloth
Thanks, Scott. Now I see the distinction...and that worked! Rick -Original Message- From: Scott Brady [mailto:[EMAIL PROTECTED]] Sent: Friday, December 27, 2002 12:16 PM To: CF-Talk Subject: Re: Best way to handle Checkboxes with Insert Query? >I've read on this list that it's recomme

Re: Displaying *.swf files

2002-12-27 Thread Jason Miller
Well - that's jsut for netscape - IE needs the Object tag - These other classid tags and code base tags are important because they will allow the browsers to fetch player updates or the plugins if a viewer doesn't have them. codebase= "http://download.macromedia.com/pub/shockwave/cabs/flash/swf

Re: Displaying *.swf files

2002-12-27 Thread Joe Eugene
Thanks..I think i got straight http://www.macromedia.com/go/getflashplayer"; type="application/x-shockwave-flash" width="400" height="250"> Is the right way to do this? why is the shockwave file 3 times bigger than *.png? Takes soo much time to load. Any ideas? Thanks Joe On Fri, 27 Dec 2002 11

RE: Can I Put LIKE '%#form.SearchText#%' into a cfqueryparam?

2002-12-27 Thread Matt Robertson
Rick wrote: >And you're taking that approach why, Matt? > Is it to trap harmful code that might be entered into a formfield? Yup. I have a search tool that has to work on 4 different db platforms (Access, SQL Server, mySQL and Oracle 8i/9i) using the same code and on servers where the developer

RE: Verity Error: VdkADminPurge

2002-12-27 Thread John Lucas
Hi Ryan, I shortened the list up for the email.should have checked it before sending it. A _us and _ca collection exists for each of the collections in the list. Thanks, John -Original Message- From: Ryan Kime [mailto:[EMAIL PROTECTED]] Sent: Friday, December 27, 2002 11:04 AM To:

RE: Best way to handle Checkboxes with Insert Query?

2002-12-27 Thread Everett, Al
There's a couple of ways. Using CFPARAM is one. Then, checked or unchecked, your action page will have a Form.checkboxone to work with. Another is to put logic inside your CFQUERY: INSERT INTO MYTABLE ( NAME, EMAIL, SPAMISOKAY )

RE: Best way to handle Checkboxes with Insert Query?

2002-12-27 Thread Ben Doom
: I've read on this list that it's recommended to use #IsDefined()# in place : of #ParameterExists()#, : but doesn't IsDefined assume the existence of the variable, and therefore : doesn't check : for the existence as does ParameterExists? CFPARAM? And why has : ParameterExists become deprecated :

Re: Best way to handle Checkboxes with Insert Query?

2002-12-27 Thread Scott Brady
>I've read on this list that it's recommended to use #IsDefined()# in place >of #ParameterExists()#, >but doesn't IsDefined assume the existence of the variable, and therefore >doesn't check >for the existence as does ParameterExists? CFPARAM? And why has >ParameterExists become deprecated >as a f

SMTP AUTH revisited

2002-12-27 Thread Cathy Taylor
Sorry, I know it's pretty slow around here because of the holidays (and I'll be gone next week)... But I'd like to revisit this if possible... I've been fumbling my way through java and made some vast improvements from yesterday. Using two java ext packages (javamail and jaf something), this cfx

RE: Can I Put LIKE '%#form.SearchText#%' into a cfqueryparam?

2002-12-27 Thread Rick Faircloth
And you're taking that approach why, Matt? Is it to trap harmful code that might be entered into a formfield? Rick ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.c

Best way to handle Checkboxes with Insert Query?

2002-12-27 Thread Rick Faircloth
Hi, all. So I've abandoned CFINSERT in favor of CFQUERY Insert Into... And am now using to handle the values of the formfields... The problem is now checkboxes... When using CFINSERT, it didn't matter that a Checkbox was unchecked and therefore the formfield didn't exist. With the CFQUERY Inser

RE: Verity Error: VdkADminPurge

2002-12-27 Thread Ryan Kime
Is the collection name "health" or "health_us"? The error shows "health_us", but in your loop you are trying to purge "health". -Original Message- From: John Lucas [mailto:[EMAIL PROTECTED]] Sent: Friday, December 27, 2002 10:42 AM To: CF-Talk Subject: Verity Error: VdkADminPurge Good

RE: Can I Put LIKE '%#form.SearchText#%' into a cfqueryparam?

2002-12-27 Thread Matt Robertson
OK, glad I asked. Wanted to ask someone with experience before I dove in and did it. --Matt Robertson-- MSB Designs, Inc. http://mysecretbase.com -Original Message- From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 26, 2002 10:30 PM To: CF-Talk Subject: RE: Can

Re: padding zeros

2002-12-27 Thread Scott Brady
>I end up switching languages so often every day, I find it easier to have a base set >of "tricks" that are language neutral - so I can do the same thing regardless of >current platform. > >That is the only advantage. That makes sense. Thanks! Scott Scott Brady

Re: padding zeros

2002-12-27 Thread Jerry Johnson
I end up switching languages so often every day, I find it easier to have a base set of "tricks" that are language neutral - so I can do the same thing regardless of current platform. That is the only advantage. It works in Cold Fusion, Perl, SQL, ActionScript and Foxpro/Clipper to name the l

Verity Error: VdkADminPurge

2002-12-27 Thread John Lucas
Good Morning, For over a year and a half our verity searches have been running successfully. As of late, we are getting continually getting the following error when searches are conducted. Collection failed to open: health_us That seems pretty obvious that there is a problem with the collect

Re: Displaying *.swf files

2002-12-27 Thread Massimo, Tiziana e Federica
> Just the flash player - but not sure whether it requires flash player 6 > or 5. > If you post the code that outputs the object / embed tags - I'll be > happy to look at it and check it out. > You'll need both object and embedd tags to display in IE and NN. Up to CF 5 the minimum requirement wa

Re: padding zeros

2002-12-27 Thread Scott Brady
>add the number to a really big number (like 1000) and take the rightmost number >of digits you need. What's the advantage to that over using the NumberFormat function? Oh, I was mistaken before. If your number has more digits than the NumberFormat allows, then it doesn't throw an error but

Re: Displaying *.swf files

2002-12-27 Thread Jason Miller
Just the flash player - but not sure whether it requires flash player 6 or 5. If you post the code that outputs the object / embed tags - I'll be happy to look at it and check it out. You'll need both object and embedd tags to display in IE and NN. jay miller Joe Eugene wrote: >Does anybody kn

Re: padding zeros

2002-12-27 Thread Jerry Johnson
I have often used the following "trick" add the number to a really big number (like 1000) and take the rightmost number of digits you need. Example: function zeroPadLeft(val,digits) { return right(val+evaluate("1"&repeatstring("0",digits)),digits); } #zeroPadLeft(565,10)# Jerry Johnso

RE: Displaying *.swf files

2002-12-27 Thread Ben Doom
AFAIK, it should just require Flash Player -- they're just little flash files. What browser on what platform? And is it getting a "broken" symbol, or a "puzzle piece", or just not displaying at all? --Ben Doom Programmer & General Lackey Moonbow Software : -Original Message-

RE: padding zeros

2002-12-27 Thread Turetsky, Seth
thanks everybody, my brain is still on vacation. i did notice though, that if the number is bigger than what you format it as, it chops it, so i'll do some checking beforehand, but it would take a long time to pass what i pad it with. -Original Message- From: Larry Juncker [mailto:[EMAI

Displaying *.swf files

2002-12-27 Thread Joe Eugene
Does anybody know what is required to display shockwave (*.swf) files, generated from a cfchart. The advantange over png/jpg files is the mouse over and stuff.. but i cant get it to display. CFMX/WINK2k box. Thanks Joe ~| Archive

RE: padding zeros

2002-12-27 Thread Tony Weeg
well its not really a udf ;) it's a TDSNOC (a tony defined snippet of code) that I use.hah. hth ..tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping & reporting www.navtrak.net 410.548.233

RE: padding zeros

2002-12-27 Thread Larry Juncker
Another thing you can do if all you want is to keep the format at 7 is use NumberFormat with 9's as below to pad spaces and not 0's. 1234 NumberFormat(1234,"999") will display as1234 whereas NumberFormat(1234,"000") will display as 0001234 Just my two cents worth Larry Juncker Se

RE: padding zeros

2002-12-27 Thread Tony Weeg
heres how I use it now, and it works beautifully... this is part of an ipaddress to number udf that I created where I want all octets to have 3 places, so I can take 166.1.14.10 to the value of 166001014010 that can then be inserte

Re: padding zeros

2002-12-27 Thread Scott Brady
>Would this be done with numberformat or should i grab the length of the id and loop >spitting out the number of zero's i want? Yes, I'd use NumberFormat. However, make sure your numberformat mask has enought digits for future use. I believe that if you have numberformat(mynumber,"0") and

RE: padding zeros

2002-12-27 Thread Ben Doom
I'd just pad it using numberformat(). Likely, writing the loop is a somewhat less efficient (noncompiled) way of doing what numberformat() is doing anyway, and why reinvent the wheel? --Ben Doom Programmer & General Lackey Moonbow Software : -Original Message- : From: Turetsk

RE: padding zeros

2002-12-27 Thread Tony Weeg
seth, look at the insert() function. ..tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping & reporting www.navtrak.net 410.548.2337 -Original Message- From: Turetsky, Seth [mailto:[EM

RE: padding zeros

2002-12-27 Thread Everett, Al
I think you can do it with NumberFormat(). NumberFormat(myNumber,'000') You can pad the other way, but I wouldn't loop. I'd use RepeatString(): RepeatString('0',7-Len(myNumber)) & myNumber > -Original Message- > From: Turetsky, Seth [mailto:[EMAIL PROTECTED]] > Sent:

padding zeros

2002-12-27 Thread Turetsky, Seth
I'm displaying an id, which in the long run may change length from say 6 digits to 7. So to keep it standard, I want to pad a zero in front of the 6's. Would this be done with numberformat or should i grab the length of the id and loop spitting out the number of zero's i want? thanks, seth T

RE: Cold Fusion forum (OPEN SOURCE?)

2002-12-27 Thread Jim Davis
> -Original Message- > From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] > Sent: Friday, December 27, 2002 8:55 AM > To: CF-Talk > Subject: Cold Fusion forum (OPEN SOURCE?) > > > I'm going to talk to a company (who'll be named later) today > about writing a solid, open source forums pac

RE: Cold Fusion forum (OPEN SOURCE?)

2002-12-27 Thread Adrocknaphobia Jones
That's awesome Mike. I'll gladly give you 15+ hours a week. Adam Wayne Lehman Web Systems Developer Johns Hopkins Bloomberg School of Public Health Distance Education Division -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Friday, December 27, 2002 8:55 AM To

RE: Cold Fusion forum (OPEN SOURCE?)

2002-12-27 Thread jon roig
Not too many, these days... and compared to the # of hosts that support CF? -- jon -Original Message- From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]] Sent: Friday, December 27, 2002 9:44 AM To: CF-Talk Subject: Re: Cold Fusion forum (OPEN SOURCE?) I can think of one good reaso

RE: request_url.exe

2002-12-27 Thread Craig Dudley
Thanks Al, that's done the business. -Original Message- From: Everett, Al [mailto:[EMAIL PROTECTED]] Sent: 27 December 2002 14:26 To: CF-Talk Subject: RE: request_url.exe I've seen several mentions of wget on this list. It seems to do what you're looking for. > -Original Message

Re: request_url.exe

2002-12-27 Thread Christian Cantrell
One of the most useful commands for a web developer on a UNIX machine is wget. wget makes an HTTP request to the specified URL and returns the output (it can be made to follow links to a specified depth, as well, and essentially mirror an entire site your local machine). You can also use

Fw: Coldfusion Monitoring Service + IIS

2002-12-27 Thread Peter Mayer
Hello! We have switched from the IIS to Apache and now we have the problem that every time we restart the Apache webserver, the coldfusion monitoring service automatically starts the IIS (despite of the fact that the services IIS admin, publishing service, ftp and smtp are set to disabled). As f

Cold Fusion forum (OPEN SOURCE?)

2002-12-27 Thread Michael Dinowitz
I'm going to talk to a company (who'll be named later) today about writing a solid, open source forums package for them. Why would they fund this? For publicity. A strong, free product that comes from them will make people notice them more and support the community at the same time. ~~~

Re: Cold Fusion forum (OPEN SOURCE?)

2002-12-27 Thread Cutter (CF_Talk)
I can think of one good reason...Some hosts do not support PHP. Cutter jon roig wrote: >I hear you, Adrocknaphobia... there really isn't a "perfect" forum system >out there. (I've been running online forums for several years, most recently >for a large non-profit website...) > >That said, PhpBB

RE: Is this bad news?

2002-12-27 Thread Jerry Johnson
That is just SQLServer trying to connect back to the mothership (That is what MS _really_ stands for). It is trying to deliver everything you have said or done since the last time it uploaded. All your databases are belong to us. Sorry. This is the closest I can find: http://www.mssqlserver.c

RE: request_url.exe

2002-12-27 Thread Everett, Al
I've seen several mentions of wget on this list. It seems to do what you're looking for. > -Original Message- > From: Craig Dudley [mailto:[EMAIL PROTECTED]] > Sent: Friday, December 27, 2002 9:25 AM > To: CF-Talk > Subject: RE: request_url.exe > > > Unfortunately it has to run from the

RE: request_url.exe

2002-12-27 Thread Craig Dudley
Unfortunately it has to run from the OS and not a web page. Looks like a might have a knock up a quick class file. -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: 27 December 2002 14:22 To: CF-Talk Subject: Re: request_url.exe cf_http? - Original Message

Re: request_url.exe

2002-12-27 Thread Howie Hamlin
cf_http? - Original Message - From: "Craig Dudley" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, December 27, 2002 9:13 AM Subject: request_url.exe > Hi, > > > > Our ISP have hosed our web server while trying to fix it's drive array, > I've got back most of the

request_url.exe

2002-12-27 Thread Craig Dudley
Hi, Our ISP have hosed our web server while trying to fix it's drive array, I've got back most of the data and files, but we are missing a file called request_url.exe which we use to run web pages from command prompt without opening a browser window, it doesn't process any of the page or anythi

Re: Recursive List output

2002-12-27 Thread Jeffry Houser
In essence, given 10 options, you are trying to create the Boolean Truth table for any combination of 6 of them? I'm not sure if you need recursion, just nested loops. Something like this ( untested) should work for two lists: Item1, Item2, And you just have

Re: PostgreSQL / MX datasource questions

2002-12-27 Thread Jochem van Dieten
Quoting Josh <[EMAIL PROTECTED]>: > > I can't figure out what to do to get the PostgreSQL JDBC datasources > to work with CFMX... > > what is an example of the JDBC URL, driver name, and driver class? http://spike.oli.tudelft.nl/jochemd/index.cfm?PageID=15 > These don't seem to be adequately

Re: Need some server help

2002-12-27 Thread Jochem van Dieten
Quoting Phillip B <[EMAIL PROTECTED]>: > > My websites seems to dog down to the point that it takes for ever for > a page to load. This can happen any time of the day with out any > rhyme our reason and can last for about 30-60 minutes. I can't tell > if it's ColdFusion server, CF code, the email s

Re: cfstoredproc code generator

2002-12-27 Thread Adam Churvis
We've been thinking about making such a stored procedure generator as either a standalone utility or an add-on to our DatabaseBlocks product (version 3 of which is about to go into Alpha to a select group of dedicated testers). It wouldn't be free, but it would do virtually all the work for you; j

RE: Is this bad news?

2002-12-27 Thread Michael Kear
Thank you Rob. I took a look at those pages, and after wading through the gobbledegook, I think they said someone else had the same problem, but didn't point to a solution. But they too thought it was part of SQLServer somehow. So does anyone know how I can find out why SQLServer2000 is waking u