Big query with access

Hi there.
i have a query smth like this:
SELECT tablas, tyrimo_dok_pastas.pcnrs, books.name, tyrimo_dok_pastas.atsnrs
FROM (SELECT 'pirma' AS tablas, *
FROM (tyrimo_dok_pastas LEFT JOIN tyrimo_dok_gauti_email ON (tyrimo_dok_pastas.pcnrs=tyrimo_dok_gauti_email.pcnr) AND (tyrimo_dok_pastas.knnrs=tyrimo_dok_gauti_email.knnr) AND (tyrimo_dok_pastas.atsnrs=tyrimo_dok_gauti_email.atsnr)) LEFT JOIN books ON tyrimo_dok_pastas.knnrs = books.nr
WHERE tyrimo_dok_gauti_email.pcnr is null
union
SELECT 'antra' AS tablas, *
FROM  (tyrimo_dok_gauti_email LEFT JOIN tyrimo_dok_pastas ON (tyrimo_dok_pastas.pcnrs=tyrimo_dok_gauti_email.pcnr) AND (tyrimo_dok_pastas.knnrs=tyrimo_dok_gauti_email.knnr) AND (tyrimo_dok_pastas.atsnrs=tyrimo_dok_gauti_email.atsnr)) LEFT JOIN books ON tyrimo_dok_gauti_email.knnr = books.nr
WHERE tyrimo_dok_pastas.pcnrs is null);This query gives me result, if i try to perform it on ms access, but when i try to execute it in java, java gives no result. maybe anyone have any ideas how can i get the result of this query.
Maybe i should make some procedure or view in my access db and fetch all result from it??
Looking for any suggestions how to do this...
also i get error :general error
printStactTrace() -
Error: java.sql.SQLException: General error
java.sql.SQLException: General error
at sun.jdbc.odbc.JdbcOdbc.createSQLException(Unknown Source)
at sun.jdbc.odbc.JdbcOdbc.standardError(Unknown Source)
at sun.jdbc.odbc.JdbcOdbc.SQLExecDirect(Unknown Source)
at sun.jdbc.odbc.JdbcOdbcStatement.execute(Unknown Source)
at Test.main(test.java:24)

This query gives me result, if i try to perform it on
ms access, but when i try to execute it in java, java
gives no result. Your assumption is that it is the same. Your assumption is wrong.
also i get error :general errorThat means there is a syntax error.

Similar Messages

  • Random Query with Access

    I am using MS Access and since upgrading to MX6.1 "Order BY
    Rnd(RecordID)" no longer works in the query. I have searched and
    tried everything I have found with no success. I realize this is a
    an issue with the new drivers that area assigned through the CF
    Admin interface. I have tried the jodbc technique instead of using
    the default MS Access with Unicode, but my websites fail whenever I
    do so I have to switch back.
    I have tried the various coding solutions and the tags.
    Nothing works. It used to be so simple. Why someone at
    Macromedia/Adobe will not put out a simple patch to fix this I do
    not know. They even know it's an issue. Can anyone tell me what to
    do. This is very frustrating. Moving to another database platform
    is not a solution either.
    I need to simply output 3 to 5 random records from a query
    and what used to be very easy has been a thorn in my side for over
    a year now. Crazy....
    Thanks in advance to anyone who can help....
    David G. Moore, Jr.
    UpstateWeb LLC

    Dan,
    I did as you suggested and reported the bug again, but have
    not heard back. Interestingly enough, when you go to report a bug
    using the link you suggested, there is no place to tell them the
    issue is with ColdFusion. They require you select a product and it
    is not even listed. I used GoLive to report the bug becuase there
    wasn't anything else. I haven't heard anything so I wonder if that
    messed things up. Do you know of another way to contact them about
    this issue or do you know someone to send an email to. You seem to
    know more than most and have an inside track.
    I always appreciate your feedback and regard your advice very
    highly as you are constantly ingaged in these forums. If you could
    provide me with some more direction I would appreciate it. I just
    don't know why they don't seem to want to fix the issue with the MS
    Access datasource drivers. As I have searched on the issue ever
    since upgrading from 5.0 to 6.1, I have found a lot of unhappy
    people. Is it really that big of a deal. I mean, it is broken. It
    does not work. Wouldn't they want to fix it?
    Again, I would appreciate your feedback!

  • Big Issue with access applicationwise using SSO (windows AD)

    Hello BO Guru's,
    I have one big issue. i will try to explain my scenario here in brief.
    Scenario
    Currently we have 3 application A,B & C in production and SSO is configured using windows AD auth
    application -> User group -> Access -> Win AD group
    A | UG1 | Infoview | WD1
    B | UG2 | Infoview | WD2
    C | UG3 | WebIntl | WD3
    Here Infovew acces refers to: View objects & refresh object of applicationwise.
    WebI refers infoview access in addition to that copy document from corporate to personal folder\ category and scheduling access.
    Note: corporate Folder\category & universe\connection right given appropriately.
    Issue
    Suppose user a belong to WD1 means wuld have access to application A with infoview access. now after some time i.e. 2-3 days when user a is deleted from WD1 and and added to WD3 means would have access to application C with WEbi access. But issue is
    When user a logs on to infoview sometimes appllication A is also visible along with application C  which is not correct securitywise. 
    Could you please help me as how resolve it? and please share your views if anybody has faced same prob before 
    I think some where userwise security setting will be stored causing same.
    Thanks & Regards

    Many Thanks Julian Jimenez,
    FYI, I am on BOXI R3.1 with FP1.8
    I dont have access to SIA to restart CMS.
    any i will get it done.
    But what i was thinking of, there would be some cache maintned for user profiles  of last logins. so it may remember last user profile login which may causing apllication A still shown under corporate folder for him\her.
    But i am not able to get how can i achieve it?
    Please share some workaround if any body has faced same issue before.
    Thanks & Regards
    Edited by: naughtychintu19 on Sep 14, 2011 12:23 PM
    Edited by: naughtychintu19 on Sep 15, 2011 8:59 AM

  • Big query Performance

    Hi All,
    I'm working on Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bi
    I have a big query with many aggregate functions with group by clause.
    Will it give good if the split the same into multiple queries.
    Please give some ideas
    Thanks in advance.
    Sree

    sree wrote:
    I have a big query with many aggregate functions with group by clause.
    Will it give good if the split the same into multiple queries.Besides the fact that you are not providing any details for a proper answer - splitting a single query into multiple queries is seldom a good idea.
    Basic principle. It is better for a single "big" query to read a million rows, than for 10 "smaller" queries to each read a million rows. The I/O performance to read a million rows is a lot faster than having to read million rows 10 times.
    So in order to make that "biq" million row query faster, one can look at parallel processing. Instead of using a single process to read a million rows, using 10 parallel processes to each read a 100,000 rows of that total one million.
    The bottom line is that you either need to make the workload less - change the big query/data model/logic so that instead of having to read a million rows to get the answer, only 10,000 rows need to be read. If that is no possible, then you need to look at parallel processing, break that million row workload into smaller workloads, and use parallel processing to move these smaller workloads simultaneously.

  • Big Query to XLS - Freeze the program

    Hi everybody!
    I have to export to an XLS file a big Query with more than 100.000 rows... When I do that, the program starts to export, but when pass more than 70.000 rows the program freeze and dont respond anymore...
    Is this a bug of the version?
    About the system:
    Windows XP 32 Bits
    Intel Core 2 4300
    1 Gb DDR2
    Sql Developer:
    Oracle IDE     2.1.1.64.45
    Plataforma Java(TM)     1.6.0_11
    Soporte de Control de Versiones     2.1.1.64.45
    Best regards.
    Edited by: user4300570 on Dec 17, 2010 7:19 AM

    Not justifying the freeze, but Excel's last row is 65536, so any result set greater than that wouldn't fit anyway.
    You could request spanning over multiple Excel sheets at the SQL Developer Exchange though, so other users can vote and add weight for possible future implementation.
    Regards,
    K.

  • SQL Query with MS-Access Database

    Hi,
    I have linked my oracle database with MS-Access via a DB LINK. i can access the data from MS-ACCESS, but i have a problem that when i specify the column name or define a where clause in my query it gives me the error ORA-00904: invalid identfier ..
    This query fetch the data without any problem SELECT * FROM TBLREPORT@M_ACCESS but when i run SELECT EMP_ID FROM TBLREPORT@M_ACCESS it gives me the error i mentioned above. (Column name have No problem or mistake of spelling even CASE)
    also when i try to put where clause in the query it gives me same error SELECT * FROM TBLREPORT@M_ACCESS WHERE EMP_ID = '100' (Error)
    is there any change in SQL query for ACCESS database ??
    any clue
    Regards
    Rehman

    Are column/table names in access case sensitive? Issue
    DESC TBLREPORT@M_ACCESS If column EMP_ID actual name shows up in mixed/lower case, enclose it in double quotes and use the exact case. E.g., if column name shows up as Emp_Id, use:
    SELECT "Emp_Id" FROM TBLREPORT@M_ACCESSSY.

  • Linking Access tables, creating a query with using both Access and Oracle

    Hello,
    I am using 3.0.04.34 version Oracle Developer. I am supposed to create a script/procedure to use both Access tables and oracle tables together. There is an option in developer to copy the access tables into oracle. But it doesn't help me. Because when we updated the access tables
    the copied ones are not be updated. How can I created a linked access tables to oracle and create a query with using both access and oracle table together.
    I will appreciate if you guys help me. I look forward to hearing from you guys.
    Thanks,
    Pinar

    Pinar,
    to be able to query MS Access tables in Oracle you need an additional product, the Oracle Database Gateway for ODBC. It allows you to link any foreign database into an Oracle database using a suitable ODBC driver. You can then access the MS Access tables through a database link based on the Database Gateway for ODBC. This will also allow you to join local Oracle and remote MS Access tables from your Oracle database.
    There's a note on My Oracle Support which gives you more details:Document 233876.1 Options for Connecting to Foreign Data Stores and Non-Oracle Databases - For example - DB2, SQL*Server, Sybase, Informix, Teradata, MySQL
    And there's also a dedicated Forum: Heterogeneous Connectivity

  • How to query microsoft access with DDE Request?

    Hello,
    We are trying to save the results of calibration tests to access database and include a search tool inside the labview to find specific results based on the part number of the tested device. So far we have accomplished writing data into the access database using the examples of labview. My question is that is there any way to send a query to microsoft access and recieve the results inside the labview? For example send a query with a specific criteria on the part number and recieve the results for that part number.
    Thanks in advance
    Pouya

    Why would you be using DDE. That microsoft technology is obsolete and has not been used/supported in quite a few years. Instead, look at the Database Connectivity Toolkit or LabSQL. There are also numerous posts on ADO (the technology behind both). Do a search.

  • Problem accessing Infosets using Query with SQL

    Hi,
    I have Lumira desktop version 1.18.0.
    Using the Query with SQL connection, I successfully connected to SAP R/3 6. I was able to view the User Groups under CATALOG_VIEW, but it seems I cannot go beyong this point and select an Infoset. When I click on an Infoset I expect the Query pane to be populated with the SQL statement but nothing happens.
    I attached a screenshot for clarification
    Thanks
    Dany

    Hi Dany,
    A suggestion for you would be to use another client tool & check if the behavior is the same. I suggest that you use Information Design Tool (from BOE 4.1), create a connection to your ERP, then a data foundation on top of that connection and check if the behavior is the same. This way we can isolate if the problem is caused by the client tool or by the backend.
    My 2 cents
    Antoine

  • Can not execute a simple update query with ms access

    Hi
    I am trying to execute a simple update query , this is the code I am running : I get no exeptions but the db is not being updated .
    When I copy my query into access it works !
    The table / columns are spelled correctly and I am able to execute select queries.
    can anyone figure out what is going on
    Thanks shahar
    public static void main(String[] args) {
    MainManager mainManager = MainManager.getInstance();
    Log log = Log.getInstance();
    try {
    log.writeDebugMessage("befor executing query");
    //stmt.executeUpdate("update trainee set Trainee_Name = 'shahar&Rafi' where Trainee_Id = 1 ");
    //stmt = null ;
    PreparedStatement stmt1 = con.prepareStatement("UPDATE Trainee SET Trainee_Name =? WHERE Trainee_Id =?");
    String name = new String("Shahar&Rafi");
    int Id = 1 ;
    stmt1.setString(1,name);
    stmt1.setInt(2,Id);
    System.out.println(stmt1.toString());
    stmt1.execute();
    log.writeDebugMessage("After executing query");
    catch (SQLException e ){
    System.err.println("SQLException: " + e.getMessage());
    }

    Hi All,
    got the problem solved at last.
    first, in the SQL string all the values must be within " ' "
    for example:
    INSERT INTO Trainee(Trainee_Id , Trainee_password , Trainee_Address, Trainee_Name , Trainee_Phone , Trainee_Gender , Trainee_SessionTime , Trainee_Purpose , Trainee_HealthStatus , Trainee_StartDate , Trainee_Birthday) VALUES (6,'333','hhhh','rafi',048231821,true,63,4,true, ('Feb 22, 2002'), ('Feb 22, 2002'))
    second and more important,
    a 'dummy' sql select query must be performed after an update query
    example for code:
    try{
    DB.MainManager.getInstance().ExecuteUpdateQuery(A);
    DB.MainManager.getInstance().getStatement().executeQuery("SELECT * FROM Trainee");
    where A is the update query.

  • How to re-write this big SELECT Query with INNER JOINs?

    Hi Experts
    I have a performance killer SELECT query with an inner join of 3 tables u2013 VBAP, VBAK and VBEP together, which populates records to an internal table INT_COLL_ORD. Based on these records selected, in another SELECT query, records are fetched from VBUK table to the internal table INT_VBUK.
    SELECT A~VBELN A~POSNR A~MATNR A~KWMENG A~KBMENG A~ERDAT A~ERZET A~PSTYV D~AUART E~ETTYP E~EDATU
    INTO TABLE INT_TAB_RES
    FROM VBAP AS A INNER JOIN VBAK AS D
    ON D~VBELN EQ A~VBELN AND D~MANDT EQ A~MANDT
    INNER JOIN VBEP AS E
    ON E~VBELN EQ A~VBELN AND E~POSNR EQ A~POSNR AND E~MANDT EQ A~MANDT
    WHERE  A~VBELN IN s_VBELN AND
           D~auart in s_auart AND
           D~vkorg in s_vkorg AND
           D~vbtyp eq 'C'     AND
           ( ( matnr LIKE c_prefix_sp AND zz_msposnr NE 0 AND kbmeng EQ 0 )
           OR ( matnr LIKE c_prefix_fp AND kwmeng NE A~kbmeng ) ) AND
           A~ABGRU EQ SPACE AND
           A~MTVFP IN R_MTVFP AND
           A~PRCTR IN R_PRCT AND
           E~ETENR EQ '1'.
    SORT INT_COLL_ORD BY VBELN POSNR ETTYP.
    DELETE ADJACENT DUPLICATES FROM INT_TAB_RES COMPARING VBELN POSNR.
    CHECK NOT INT_TAB_RES [] IS INITIAL.
    SELECT VBELN UVALL CMGST INTO TABLE INT_VBUK
    FROM VBUK FOR ALL ENTRIES IN INT_TAB_RES
    WHERE VBELN = INT_TAB_RES-VBELN AND UVALL NE 'A'.
    Now, the requirement is:
    I want to split this query. Like, first join VBAK and VBUK first. With this selection, go to the inner join of VBAP and VBEP (on key VBELN) to get the results. How can I re-write this Query?
    Please help.
    Thx n Rgds

    Hi Nagraj
    As of your suggestion, I have re-written the query as below:
    * Declarations
    TYPES: BEGIN OF TYP_COLL_ORD,
            VBELN  LIKE VBAK-VBELN,
            POSNR  LIKE VBUP-POSNR,
            MATNR  LIKE VBAP-MATNR,
            KWMENG LIKE VBAP-KWMENG,
            KBMENG LIKE VBAP-KBMENG,
            ERDAT  LIKE VBAK-ERDAT,
            ERZET  LIKE VBAK-ERZET,
            PSTYV  LIKE VBAP-PSTYV,
            AUART  LIKE VBAK-AUART, u201Calready exists in type
            ETTYP  LIKE VBEP-ETTYP,
            EDATU  LIKE VBEP-EDATU.
    TYPES: END OF TYP_COLL_ORD.
    DATA: INT_COLL_ORD TYPE TABLE OF TYP_COLL_ORD WITH HEADER LINE.
    TYPES: BEGIN OF TYP_VBUK,
            AUART  LIKE VBAK-AUART, u201Chave added this field
            VBELN  LIKE VBUK-VBELN,
            UVALL  LIKE VBUK-UVALL,
            CMGST  LIKE VBUK-CMGST.
    TYPES: END OF TYP_VBUK.
    DATA: INT_VBUK TYPE TABLE OF TYP_VBUK WITH HEADER LINE.
    *QUERY#1 u2013 for VBAK & VBUK Join
    SELECT A~AUART B~VBELN B~UVALL B~CMGST
    INTO TABLE INT_VBUK
    FROM VBAK AS A INNER JOIN VBUK AS B
    ON A~VBELN EQ B~VBELN
    WHERE A~VBELN IN s_VBELN AND
    A~auart in s_auart AND
    A~vkorg in s_vkorg AND
    A~vbtyp eq 'C' AND
    B~UVALL NE 'A'.
    IF NOT INT_VBUK[] IS INITIAL.
    SORT INT_VBUK BY VBELN.
    DELETE ADJACENT DUPLICATES FROM INT_VBUK COMPARING VBELN.
    *QUERY#2 u2013 for VBAP & VBEP Join
    SELECT A~VBELN A~POSNR A~MATNR A~KWMENG A~KBMENG A~ERDAT A~ERZET A~PSTYV B~ETTYP B~EDATU
    INTO TABLE INT_COLL_ORD
    FROM VBAP AS A INNER JOIN VBEP AS B
    ON B~VBELN EQ A~VBELN AND B~POSNR EQ A~POSNR AND B~MANDT EQ A~MANDT
    FOR ALL ENTRIES IN INT_VBUK
    WHERE A~VBELN = INT_VBUK-VBELN AND
    ( ( matnr LIKE c_prefix_sp AND zz_msposnr NE 0 AND kbmeng EQ 0 )
    OR ( matnr LIKE c_prefix_fp AND kwmeng NE A~kbmeng ) ) AND
    A~ABGRU EQ SPACE AND
    A~MTVFP IN R_MTVFP AND
    A~PRCTR IN R_PRCT AND
    B~ETENR EQ '1'.
    ENDIF.
      SORT INT_COLL_ORD BY  VBELN POSNR ETTYP.
      DELETE ADJACENT DUPLICATES FROM INT_COLL_ORD
        COMPARING VBELN POSNR.
      CHECK NOT INT_COLL_ORD[] IS INITIAL.
      LOOP AT INT_COLL_ORD.
        CLEAR: L_MTART,L_ATPPR,L_ETTYP.
        IF L_PREVIOUS_ETTYP NE INT_COLL_ORD-ETTYP OR
          L_PREVIOUS_AUART NE INT_COLL_ORD-AUART.
          READ TABLE INT_OVRCTL WITH KEY AUART = INT_COLL_ORD-AUART ETTYP = INT_COLL_ORD-ETTYP.
          CHECK SY-SUBRC NE 0.
    Now, the issue is:
    Please note that declaration for INT_COLL_ORD has a field AUART, which is used in further parts of program (see the statement just above)
    But, since neither VBAP nor VBEP contains AUART field, it cannot be fetched through the QUERY#2. So this value is not populated into INT_COLL_ORD through SELECT Query.
    Since this field is used in later part of program & that the internal table has no value for this field, it dumps!!
    How to include this value into the INT_COLL_ORD?
    Plz suggest....

  • SQL Azure - query with row_number() executes slow if columns with nvarchar of big size are included

    I am linking my question from Stack Overflow here. The link: http://stackoverflow.com/questions/27943913/sql-azure-query-with-row-number-executes-slow-if-columns-with-nvarchar-of-bi
    Appreciate your help!
    Gorgi

    Hi,
    Thanks for posting here.
    I suggest you to check this link and optimize your query on sql azure.
    http://www.sqlusa.com/articles/query-optimization/
    http://sqlblog.com/blogs/paul_white/archive/2011/02/23/Advanced-TSQL-Tuning-Why-Internals-Knowledge-Matters.aspx
    Also check this blog which had similar issue.
    https://social.msdn.microsoft.com/Forums/en-US/c1da08b4-265d-4ec8-a252-8d7090234e3e/simple-select-query-takes-long-time-to-execute-with-nvarchar-columns?forum=transactsql
    Girish Prajwal

  • Big problem with a select using remote database

    Hi Guy.
    I have a big problem with a simple query, but this is a scenario.
    Actuallly I'm in Alexandria - Egypt with a server with Oracle 10.2.0.4 database 32 bit on linux Red Hat as 4.8. the server can connect to another database oracle but 9.2.0.6 installed on Red Hat As 4.5 placed in Milano Italy . Ttwo networks are connected via two adsl cisco router with firewall and Vpn functions. In Egypt there isn't a very good adsl.
    In Alexandria, I'm trying to connect to database in Italy with sqlplus. The sqlplus connected I write.. select * from addetti and all work fine.
    My problem is that when I try to make the same select on a table with many columns oracle database kill me a session.
    My table (ic_lav) is long 174 colums 1924 byte for row. Well when I write a query with select * from ic_lav all oracle close my session.
    So I began to change my query I start to
    select field1 from ic_lav... and work
    select field1,field2,field3,..........field50 from ic_lav and work
    select field1,field2,field3,..........field70 from ic_lav and doesn't work
    the select work with 68 columns
    problem: the query with more then 1064 byte for row doesn't work.
    I've tryed with anoter big table with the same problem, but the select fwork with 65 columns...
    Iit is obvious that there is any problem with the limit of the query.
    The same query (select * from ic_lav) in localMilano)l work fine.
    The same query (select * from ic_lav) in vpn with a better adsl line and openvpn software (NO CISCO firewall) WORK FINE.
    The same query connectetd in Milano with a vpn make with analogic modem and remote access by windows work fine.
    the query (make on my laptop connectet with vpn by cisco doesn't work.
    In cisco firewall we haven't any error (cisco man tell me so)
    on database 9 I found :
    *** 2009-06-12 09:49:45.509
    *** SESSION ID:(66.44406) 2009-06-12 09:49:45.497
    FATAL ERROR IN TWO-TASK SERVER: error = 12152
    *** 2009-06-12 09:49:45.509
    ksedmp: internal or fatal error
    Current SQL statement for this session:
    select * from ic_lis where ditta
    ----- Call Stack Trace -----
    but I don't understand why the lost connection problem (bug 3816595 A processstate dump is produced for a lost connection (12152) ) is caused by len of row
    Anybody have some idea ?
    Thank you

    My table (ic_lav) is long 174 colums 1924 byte for row. Well when I write a query with select * from ic_lav all oracle close my session.Do you get any error?
    If the query length is a problem, you could create a view and query the view instead to see if this problem is resolved.

  • How to create an ABAP Query with OR logical expression in the select-where

    Hi,
    In trying to create an ABAP query with parameters. So it will select data where fields are equal to the parameters entered. The default logical expression is SELECT.. WHERE... AND.. However I want to have an OR logical expression instead of AND.. how can I attain this??
    Please help me on this.. Points will be rewarded.
    Thanks a lot.
    Regards,
    Question Man

    Hi Bhupal, Shanthi, and Saipriya,
    Thanks for your replies. But that didn't answer my question.
    Bhupal,
    You cannot just replace AND with OR in an ABAP QUERY. ABAP QUERY is a self generated SAP code. You'll just declare the tables, input parameters and output fields to be displayed and it will create a SAP standard code. If you'll try to change the code and replace the AND with OR in the SAP standard code, the system will require you to enter access key/object key for that particular query.
    Shanthi,
    Yes, that is exactly what need to have. I need to retireve DATA whenever one of the conditions was satisfied.
    Saipriya,
    Like what I have said, this is a standard SAP code so we can't do your suggestion.
    I have already tried to insert a code in the ABAP query (there's a part there wherein you can have extra code) but that didn't work. Can anybody help me on this.
    Thanks a lot.
    Points will be rewarded.
    Regards,
    Question Man

  • Greetings,Currently I am having a big issue to access the  "Shop section(tab)" of the website.

    Greetings!
    I need assistance from you wonderful mac techies out there.
    Currently I am having a big issue to access a website's "SHOP section(tab)" within this website.
    While in the process of paying for my items in my cart, I received a website message saying something
    To the affect that this website is being updated. Your items in your cart will be in your cart.
    Then the website's screen kicked me out the door.
    A few days later I accessed the main page of this website with no problem.
    I can read the information on the main web page pertaining to items I need to purchase, etc., with no problems.
    I click and maneuver from on one tab to another from the main page within this website with no issues.
    When I click on the "SHOP section(tab)" within this website to complete my purchase.
    Part of this website an error occurs on this "SHOP tab".
    "Safari can't connect to the server".
    Safari can't open the page "https://and the name of this website" because Safari can't connect to the server "www.the name of this website".
    I click on the reload from the view of the toolbar and I can't access this website's "Shop section(tab) at all.
    I e-mailed the webmaster of this website a few times, but no response.
    In the past I was able to access the "Shop section(tab") within this website many times to purchase items with no issues.
    Now I am at my wits end as I really need to complete my purchase from this website.
    I cannot purchase these items from other websites. Only this website. Good Grief( :
    I am at my wits end as I really need to complete my purchase with this particular website.
    So, I really need anyone's tech expertise to help me access the "SHOP" tab within this website.
    I can't figure this out (:
    No issues with:
    * My modem and ethernet connections
    * My network provider connection
    * Cables and wires
    * Power strip unit to protect my electronics.
    * Utility bill is up to date.
    I have a Mac Desktop 23 inch screen (Purchased 01-01-2013)
                                                      Lion: OS X
                                                      Version 10.8.2
                                                      Processor: 2.7 GHz Intel Core i5
                                                      Memory: 8 GB 1600 MHz  DDR3
    I use Safari: Version 6.0.2 (8536.26.17)
    I use the Mail app that shows a postage stamp with the picture of an eagle  
                                                      It is the Version 6.2 (1499)
    I really need help access the "Shop section(tab)" of the website to complete my purchase.
    What is the next step to fix my dilemma?
    Thank-you all in advance with your expertise, and patience.
    Very Much Appreciated.
    With Kindest Regards

    You can try basic steps like these in case of issues with web pages:
    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and only cookies from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for