Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: jvande
  • Content: Threads
  • Order by date
  1. jvande

    Reverse DNS Multiple respsonses

    We have a mail server at IP address 66.173.88.2. We have multiple mail records that point to this. mail.domain1.com, mail.domain2.com,mail.domain3.com. I am trying to configure reverse DNS to respond with all three domains instead of just one. Could someone give me some direction on how to...
  2. jvande

    VPN connection slow

    I have RAS/VPN configured on a WIN2k server and when I access it with any clients, be it XP or win2k, the network is very slow. Any thoughts on why it is soooo slow? I have a T1 on my server and cable modem on the clients that connect so it isn't a bandwidth issue.
  3. jvande

    OWA Domain login

    I have IIS configured under the Exchange folder to login to our default domain. That allows OWA clients to login without putting the domain\username. Now the problem that I am having is that if there is a link in an email it prompts them to login again and then they have to login by...
  4. jvande

    Distinct query

    Lets say I have a table with the following information Date1 Date2 Date3 1/1/04 1/5/04 1/1/04 1/4/04 1/8/04 1/8/04 1/5/04 1/10/04 I want a query that will only return the unique dates of all these fields. So the result would be 1/1/04 1/4/04 1/5/04 1/8/04
  5. jvande

    OWA spell check URL link

    I am having two problems with OWA on exchange 2003. Everything else works correct. I have the latest IE. 1.) When I try to do spell check it gives me a dialog box error, "the spelling in this item can't be checked. Try again later." This happens in every case and isn't computer...
  6. jvande

    IMAP over Internet Mac

    I am trying to connect to exchange 2003 with outlook2001 for mac over the internet. I have changed the hosts file to resolve my exchange server name but, am still having problems connecting to exchange server 2003. No firewalls are in place. A PC on the same network works fine.
  7. jvande

    extended ACL's

    I have extended access lists and I am trying to allow a subnet of address access all tcp ports on server 18.23.56.34. Here is my access list. It doesn't work, could someone help me with the syntex? access-list 101 permit tcp host 65.29.238.0 0.0.0.255 18.23.56.34
  8. jvande

    Exchange 2003 Outlook 2002 over Internet

    I am trying to connect my outlook client to exchange 2003. I used to have no problem doing this in exchange 5.5 because I could tell it what ports to communicate on. Is there a reg key in exchange 2003 so I can force it to communicate on certain ports without grabbing random ports 1000-2000...
  9. jvande

    can't find flash?

    I just bought a 2924 switch with ver 11.2(0.0.53)SA5 IOS on it. When I do a show ver it says system image file is "flash:/SA5-enterpise". I am trying to load a new IOS on it by doing: copy tftp flash. I doesn't understand flash. I can't do dir flash or anything. What do I do to...
  10. jvande

    complicated dynamic SQL statement

    exec('UPDATE r_pdf_confidential_build_detail SET '+@businesss_Field1+'=Cast(@business_number as varchar(11)) where @business_number=@business_counter and @chronid=@chron_id') I get the error Must declare the variable '@business_number' @business-number is a variable that is defined already. I...
  11. jvande

    Use variable name for column

    If I want to update the field Field1 in table, but use the variable for it why won't it work. set Column_name='Field1' update table set Column_name='data' It looks for a column name of Column_name instead of the column Field1. Is there something wrong with my syntex?
  12. jvande

    adding varible to column name

    I have a loop that goes through and updates records with a counter in it (business_counter). I filed name of 1business-Number, 2business_number, etc. I want to be able to call that column name by adding the business_counter+businessnumber. I have put ??? in the part of the code that I can't...
  13. jvande

    XP in Win2000 domain

    I have successfully added an XP pro machine in a win2000 domain using the network identification wizard. Upon rebooting and logging in as local admin I get 2 errors in my application log. Event ID 1053 Windows cannot determine the user or computer name. (The specified domain either does...
  14. jvande

    outlook exchange over internet

    Is accessing exchange through outlook over the internet secure? I know it authenticates using NT Challange response, but then is the communication between the two of them secure after that? If not is there any way to implement secure communication between the two other then VPN?
  15. jvande

    exchange over the internet

    Is it very insecure to run outlook and exchange over the internet. I see that it does NT challenge response to authentic to the server, but after that does the information that is passed from the exchange server to the outlook client get encrypted. If not is there a way to have it encrypted...
  16. jvande

    ASP and Exchange 2003

    We are looking to host a customer with approxiametely 55 mailboxes on exchange using outlook 2003 as the client. We plan on having them access the exchange server which resides on a T1 through their company DSL Internet line. There will be no dedicated connection to our exchange server to...
  17. jvande

    update record multiple fields

    What is the best way to update multiple fields in a record? Table1 Field1 -primary key Field2 Field3 Field4 Field5 Insert into Table1 t1 (field1,Field3,Field4,Field5) (select field1,sum(field3),sum(field4),sum(field5) from table2 t2 group by field1) where t1.field1=t2.field1 I know that...
  18. jvande

    getting totals

    What is the best way to get totals for Field1,2? Select Field1,Field2,Field3,sum(field2) as sum_field1,sum(field2) as sum_field2 from table1 where field1='test'
  19. jvande

    Getting DoD with 12.3 IOS

    Good day, I have a 3640 with IP/ENT/FW and the latest IOS (12.3) loaded. The router is getting the input overrun on the FA0/0 interface (DMZ). The S0/0 is fine (enough). I read: http://www.cisco.com/warp/public/707/cisco-sa-20030717-blocked.shtml and it says that the 12.3 IOS versions are not...
  20. jvande

    join like clause

    I am trying to have a query where it joins two tables where the names are like one another. select name,school,address,city,st_abbr,zip5,phone from temp_complete_list c join temp_sss s on st_abbr=state_code where name like '%'school'%' ---------This doesn't work Is it possible to do a...

Part and Inventory Search

Back
Top