Questions tagged [isam]

ISAM stands for Indexed Sequential Access Method, a method for indexing data for fast retrieval, originally developed by IBM.

69 questions
0
votes
0 answers

Microsoft ACE.oledb.16 is not registered, but it is

I have searched high and low for this situation... and it's annoying me. I am coding in VB.net 2019 and am trying to import an Excel spreadsheet. I ran the code on Monday and it worked great! I run the code on Tuesday... and it fails. The ACE OLEDB…
CorvetteGuru
  • 167
  • 1
  • 2
0
votes
0 answers

How to resolve a "Could not find installable ISAM error in MySQL connection string in Access module

Access 365/Windows 10 I’m getting the “Could not find installable ISAM” error which I believe means I’ve a problem with my connection string below. I did a right click, export on a single Access table to the MySQL backend so that I could link it and…
0
votes
1 answer

Blazor Open ID Connect authentication error "The request included multiple client credentials"

I have implemented Open ID Connect with Blazor using the following method: Startup.cs public class Startup { public Startup(IConfiguration configuration) { this.Configuration = configuration; } public IConfiguration…
Tony Arntsen
  • 123
  • 1
  • 8
0
votes
2 answers

VB6 - A foxpro 2.6 no isam error on XP

The boss handed me some rather ancient legacy code, all done in VB6. After installing Visual Studio 6 and a few other things, I'm finally able to open the project and actually compile/run it. My new problem comes from this line of code: Set db =…
cost
  • 4,420
  • 8
  • 48
  • 80
0
votes
1 answer

Display error message in HTML from Webseal

Hello I have an error page for user when their account gets locked. When I view the source code of page it just contains one line %ERROR% I am trying to understand if this is some kind of string interpolation as I have never seen it done with %…
Shivam...
  • 409
  • 1
  • 8
  • 21
0
votes
2 answers

Store data in the file with two indexes

I am looking for a way to store a big amount of data in the file or files. The additional requirement is: it should be indexed, two indexes on integer fields should allow selecting a specific set of data very fast. Details: the data record is a…
Epsiloncool
  • 1,435
  • 16
  • 39
0
votes
1 answer

IBM (ISAM) , Single Sign-on and a PHP Web App

I need some guidance regarding "single sign-on" and "ibm security verify access v10". I am not particularly a programmer but based on the task given to me i created a simple PHP based web app that uses html form (username/password) and authenticates…
0
votes
1 answer

IBM webseal custom redirection not working at my application after getting iv-user successfully

i am working on the webseal authentication, i have created the junction with name /dgcontroller/services/dgsecure i have craeted the rest api with same name as junction. Here is the rest api @RequestMapping(value = "/dgsecure", method =…
Jony Mittal
  • 151
  • 6
  • 23
0
votes
1 answer

Should we compare 'sub' claim in Access Token and ID Token?

If we get Id token and access token like below in an OIDC flow: Id token: { "iss": "https://server.example.com", "sub": "24400320", "aud": "s6BhdRkqt3", "nonce": "n-0S6_WzA2Mj", "exp": 1311281970, "iat": 1311280970, "auth_time": 1311280969, …
0
votes
2 answers

Has anyone tried the new MySQL 5.5 InnoDB for performance?

I would like to know if anyone has personally benchmarked the new InnoDB with large data sets. I don't use the latest version but I have implemented ISAM tables with over 20 million records. It's well indexed and I am able to pick out on a given…
itsols
  • 5,406
  • 7
  • 51
  • 95
0
votes
1 answer

Could not find installable ISAM access 2016 c#

I'm trying to update table into an .accdb file by a C# program. I've opened the connection in this way: cn.ConnectionString= @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=D:\test.accdb;Persist Security Info=True;Database…
user3906040
  • 651
  • 1
  • 8
  • 12
0
votes
0 answers

IBM Security Access Manager (ISAM) Installation, firmware image error can't open dev/sda

My manager has asked me to install ISAM and he has provided me the VMs on server. I am accessing them through vsphere client. I don't find it that tough but the initial error is so interrupting I am attaching snpas below. Can anyone tell me why it…
0
votes
1 answer

TAM to ISAM migration for SOAP services

We are currently using IBM TAM infrastructure for authorization of user for front end application. Our front end application then call another common application via SOAP and generate and propagate LTPA security token where common application…
Kishor
  • 31
  • 1
  • 8
0
votes
1 answer

Proxy gives 502 Bad Gateway error when trying to download file from express app behind proxy

I am using ISAM proxy app (let's call it Proxy-APP) powered by Express. ISAM uses reverse proxy concept to redirect the traffic to backend express app (call it App). Problem: We are having a download functionality written in App. Similar to below…
abhishekrvce
  • 185
  • 3
  • 9
0
votes
2 answers

Uploading file to datagridview

I have this program where I am trying to upload an excel file and will be shown in my datagridview but i having this error Additional information: Could not find installable ISAM. Im new to VB please help me Here is my code: Private Sub…
user8264268