Search the web
Sign In
New User? Sign Up
active-server-pages · Active Server Pages Developers' List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 11202 - 11231 of 12395   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11202
Hi folks... My contact at Wiley (publisher) is looking for SQL gurus to help write a training series, as well as tech editors to proof the writing. If you're...
Dian D. Chapman
dianchapman
Offline Send Email
Oct 3, 2005
4:14 pm
11203
Hi...appreciate any help figuring this one out. It was working before, but now the client moved the SQL data to an Access DB (don't ask!<sigh>) and the IDs...
Dian D. Chapman
dianchapman
Offline Send Email
Oct 3, 2005
9:32 pm
11204
Thanks much to Daniel who replied to me directly and scolded me for using *...and recommended I specify the needed fields...since some apps might have heart...
Dian D. Chapman
dianchapman
Offline Send Email
Oct 3, 2005
10:28 pm
11205
As it goes...I got one error fixed...which moved me on to the next.<sigh> Any ideas on this one? Exact error: "Syntax error in JOIN operation." Here's the...
Dian D. Chapman
dianchapman
Offline Send Email
Oct 3, 2005
10:41 pm
11206
Further...I ripped it apart and the problem appears to be here.. & "FROM csdbo_CLIENT, csdbo_PATIENT INNER JOIN csdbo_OWNER ON " _ It seems to not like the...
Dian D. Chapman
dianchapman
Offline Send Email
Oct 4, 2005
3:27 am
11207
I got it working! FINALLY. Just as an FYI...I didn't realize that SQL can work differently in SQL Server and Access...which was why I was going so nuts knowing...
Dian D. Chapman
dianchapman
Offline Send Email
Oct 4, 2005
5:00 pm
11208
Didn't realise you didn't know. All the engines are different from each other to some extent. Biggest problem I've had with this was trying to develop under...
David Smart
smartware_co...
Offline Send Email
Oct 4, 2005
9:43 pm
11209
Thanks for the added info. Yeah, I'd learned about dates, but didn't realize there other major differences. Dev and learn, eh? ;-) Dian ~ View Hurricane Humane...
Dian D. Chapman
dianchapman
Offline Send Email
Oct 4, 2005
10:59 pm
11210
Hi Group I have a VB.NET utility which has been scheduled to run every 5 mins and check our database for any new data in a specific table and sends the mail ...
Ilyas
iluilyas
Offline Send Email
Oct 10, 2005
11:10 am
11211
Yes, you can convert it to a service. ... From: active-server-pages@yahoogroups.com [mailto:active-server-pages@yahoogroups.com] On Behalf Of Ilyas Sent: 10...
Adrian Forbes - ITD
aidy_forbes
Offline Send Email
Oct 10, 2005
12:05 pm
11212
Although, IIRC you'll have to write a separate app to monitor the service as a service shouldn't have a GUI. Dan ... From: active-server-pages@yahoogroups.com ...
Dan Powderhill
danaspelite
Offline Send Email
Oct 10, 2005
12:43 pm
11213
the main functionality would be listing/monitoring the db processing. may be, i can drop windows service and write a utility which calls the sub repeatedly...
Ilyas
iluilyas
Offline Send Email
Oct 10, 2005
7:03 pm
11214
Anyone know how to set the OraDynaset NoCache option? thanks in advance......
shortestpath
Offline Send Email
Oct 11, 2005
9:08 pm
11215
Hi folks, Suppose i have variables Zone_z1, Zone_z2, Zone_z3 etc upto Zone_z8. I want to assign Zone_z1 to 0 or 1 based on the data retrieved from the...
Ms. Geeba Benoie
geeba_g
Offline Send Email
Oct 15, 2005
4:55 am
11216
A variable name is just a name. It isn't a text string, with or without the &. There are several things you can do: - Use an array. The actual zone number...
David Smart
smartware_co...
Offline Send Email
Oct 15, 2005
11:41 am
11217
Hello Can anyone help me to solve this problem.I can't connect CSV file to ASP....
atifnisar2000
Offline Send Email
Oct 15, 2005
4:00 pm
11218
Describe the problem. Show the code. Give the error, etc. Ray at home...
Ray at home
ray_at_place
Offline Send Email
Oct 15, 2005
10:09 pm
11219
To make a long story short, I'm upsizing a database from Access to MS SQL Server. Major difference in code seems to be the 1 vs -1 for true and I can cope...
Christie Mason
cmasonvargas
Offline Send Email
Oct 21, 2005
6:17 pm
11220
I believe GETDATE() will work. Thanks Andy ________________________________ From: active-server-pages@yahoogroups.com ...
Mills, Andy R. (Regen...
mtdewisgreen
Offline Send Email
Oct 21, 2005
6:19 pm
11221
I'll try that, came across that idea during one search but wasn't sure. Thank you, Christie Mason ... From: active-server-pages@yahoogroups.com ...
Christie Mason
cmasonvargas
Offline Send Email
Oct 21, 2005
6:27 pm
11222
Christine: If you go into the Design of the table in Enterprise Manager: you can set the default date to GETDATE() by entering this into the Default Value...
Mills, Andy R. (Regen...
mtdewisgreen
Offline Send Email
Oct 21, 2005
6:32 pm
11223
Hii This script is working.But, when click the delete link, I got error message "File note found". Can you help me please? Ozzy. ... <body> <% process =...
ozan besinci
ozanbesinci
Offline Send Email
Oct 26, 2005
11:16 am
11224
Do you (or rather, does the user running this script, such as IUSR_servername have permissions to access the file and delete? Ray at work...
Ray at home
ray_at_place
Offline Send Email
Oct 26, 2005
1:18 pm
11225
I have a script where a subroutine builds my tables and fills them with DB data. Is it possible to make a calculation and pass it to a root variable from the...
Bill
billebert777
Offline Send Email
Nov 3, 2005
5:02 pm
11226
You can reference / change a global variable from any sub or function within the same page or an included page. However personally I'd change the sub to a...
Dan Powderhill
danaspelite
Offline Send Email
Nov 3, 2005
5:28 pm
11227
Can't change this sub to func for way too many reasons. I have read about Global, Session and Application variables but I still dont know how to call a Global...
Bill
billebert777
Offline Send Email
Nov 4, 2005
1:28 am
11228
You can't really have global functions or subs, just global variables; To keep an amount for each user in the session_onStart event have Session("Amount") = 0 ...
Adrian Forbes - ITD
aidy_forbes
Offline Send Email
Nov 4, 2005
9:33 am
11229
I have been with hostcentric for the past 6 years I have many web sites there -they were just bought out and no longer support the components that I use...
Adina Rosenbaum
elladir
Offline Send Email
Nov 7, 2005
3:30 am
11230
Adina: I used to use M6.Net, but I would NEVER recommend them and would encourage everyone to never use them. I have switched due to their poor service and...
Mills, Andy R. (Regen...
mtdewisgreen
Offline Send Email
Nov 7, 2005
12:47 pm
11231
I need to load data from an excel spreadsheet into SQL Server using Visual Basic .NET. Currently, I am retrieving the contents on an excel spreadsheet(around...
kpraoasp
Offline Send Email
Nov 10, 2005
2:42 pm
Messages 11202 - 11231 of 12395   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help