Recent content by accesser2003

  1. A

    Does the Access 2013 is a strong alternative for the ASP.net

    As you can directly go live after developing the software using the MS Access 2013, Is it an alternative for the ASP.net as everything now is online directly. Please clarify, Thanks a lot
  2. A

    How to convert the data shown when opening the SQL Server tables as "#" symbol

    How to convert the data shown when opening the SQL Server tables as "#" symbol As a way to encrypt the data in the SQL Server, I have observer that when opening the SQL Server tables, I see it shown as "#" syble. How can I achieve this with my SQL Server database so not possible to read it...
  3. A

    How to automatically perfirm Repairing & Compression instruction

    Is there a VB code that I can use to automatically compress and repair the database?
  4. A

    How can I get the MS Access 2003 Run-time software

    I have searched all the sites for the MS Access 2003 Run-time software, but I failed to get it. It is a free software and free to redistribute. It is available in the Access Developer extension copy. I will appreciate If there is anyone who can tell me a web link I can use to download this...
  5. A

    How can I list all the instances available in a server machine

    If my computer name is Elephant, and I want to look for all the SQL instances at this computer, How can I get those?
  6. A

    Is it possible to create a stored procedure that process data from different DBs

    Thanks Mr. georgedwilkinson. However, Unfortunatelly the another database is located in different server. If I only put the database name, it will not find it as it thinks its in the same database. Correct? For this reason I had clarify my question by mentioning the DSN Name which refers to...
  7. A

    Is it possible to create a stored procedure that process data from different DBs

    Banana you always dont got what I am looking for. However, thanks.
  8. A

    Is it possible to create a stored procedure that process data from different DBs

    I would like to write a stored procedure that insert data from table [SourceEvents] located at a DB linked to DSN called CARDAX into another table [AllAttendanceEvents] located at the same DB of the stored procedure, which this DB is linked to a DSN called BAHRAIN. If both tables are located...
  9. A

    How to set the TimeOut of a SQL Server Stored Procedure

    Thanks very much it works. I observed that the MS SQL Server UDFs take the same time taken by the VB functions. Does the SQL SPs take less time than the UDFs or same if the code algorithm is same? My SP which calls a UDF called FindLeaveReason for every record of the table. Is the calling way...
  10. A

    How to set the TimeOut of a SQL Server Stored Procedure

    I modify my code as you advise, but the problem still.
  11. A

    How to set the TimeOut of a SQL Server Stored Procedure

    Mr. dAtarenaline, thanks very much for your continuous help and participations. When I run this code, it gives me the following error: Run-time error '3420': Object invalid or no longer set. but I am sure that the object (SP) is there. I even tested another object (SP), it gives me the same...
  12. A

    How to set the TimeOut of a SQL Server Stored Procedure

    My code is as follow, please tell me What I should modify or add Dim db As Database Dim SQLstr As String Set db = DBEngine.Workspaces(0).OpenDatabase("", False, False, "ODBC;DSN=BAHRAIN;Description=BAHRAIN;UID=Administrator;DATABASE=Bahrain;Trusted_Connection=Yes") SQL...
  13. A

    How to set the TimeOut of a SQL Server Stored Procedure

    I have a stored procedure that takes time to execute. It is supposed to work properly, but the problem is that it shows the message "Timeout expired" before showing making the results. How can I increase the total Timeout so it will not give me this message? Thanks in advance.
  14. A

    In the SQL Server, Is it possible to move from a record to next record as VB Code

    How can I move from record to the next record as what we do in the VB Code by using movenext and moveprevious. How can I achieve this in the SQL Server code. Thanks,
  15. A

    How to call a SQL server user defined function UDF from MS Access code

    It works nice and perfect. I am highly appreciative for you. Can I to send you email on your personal one? Thanks & Regards
Top Bottom