Questions tagged [guid]

A GUID (Globally Unique IDentifier) is a unique reference number used as an identifier in computer software.

A GUID (Globally Unique IDentifier) is a unique reference number used as an identifier in computer software. It is Microsoft's implementation of the UUID standard.

2008 questions
0
votes
1 answer

How to generate CorrelationID from Tibco BW5?

I am using "Queue Sender" pattern for sending JMS message from Tibco BW5. I set ReplayTo and correlationID into "Sender" and read response from "Get JMS Queue Message" using CorrelationID please see…
David Abragimov
  • 524
  • 2
  • 6
  • 24
0
votes
0 answers

Unable to extract XML node value in ORACLE stored proceedure

I have below object(serilizable)/xml structure. I am trying to extracting Ac number which is GUID, but when I try to compare that with Oracle RAW in stored proceedure, it is failing. Could somebody help me to correct it. My xml is `
Sachin
  • 459
  • 1
  • 7
  • 22
0
votes
2 answers

Custom GUID always return false on object.Equals

We have GUIDs as identifiers in our systems. As it's easy to mess up and pass the id of one entity into a method that expects the id of another entity (lets say you pass the OrderId to the InvoiceId by mistake because it's all Guids) we created our…
nvoigt
  • 75,013
  • 26
  • 93
  • 142
0
votes
1 answer

How to Generate Different GUIDs in Merge Statement in Sybase DB

I'm new to using MERGE statements and GUID.The Insert in the below Statement generates a same GUID (NEWID() generates the same GUID for all the records). Can someone please guide me on how to generate unique GUIDs in this case ? MERGE INTO TABLE_A…
0
votes
1 answer

Trying to use Powershell to Eliminate unwanted installs of software we use. (GUID)

I am attampting to create a script to uninstall unwanted instances (or old ones) of software that we use on our workstations. I can't seem to get the filtering right, though. function Get-InstalledSoftware2 { …
David Peck
  • 27
  • 1
  • 9
0
votes
1 answer

How to manage GUIDs offline

Given that clients can tamper with GUIDs if they are generated client-side, wondering how to mitigate this problem if you allow working offline. Say you have a Todo list application and are working offline. From what I'm thinking, as you create…
Lance
  • 75,200
  • 93
  • 289
  • 503
0
votes
2 answers

SQL Server - Generate unique ID to compare several columns altogether

In SQL Server, is it possible to generate a GUID using a specific piece of data as an input value. For example, DECLARE @seed1 VARCHAR(10) = 'Test' DECLARE @seed1 VARCHAR(10) = 'Testing' SELECT NEWID(@seed1) -- will always return the same output…
devklick
  • 2,000
  • 3
  • 30
  • 47
0
votes
1 answer

Generating and storing GUID value in MVC5 c# EF

I would appreciate some help here. I am trying to create a ASP.NET web app using MVC 5 EF. I have scaffolded my model to generate views and controller and apparently the create button/ insert button doesn't respond (doesn't insert values into the db…
0
votes
1 answer

Need a unique identifier that does not change on software update

I have used GUID as an unique identifier and hashed it so that it generates a unique number. But a software update has changed the GUID and failed to produce the same unique number for the machine because hashing the new GUID produced another unique…
harish sai
  • 31
  • 4
0
votes
0 answers

Delphi RAD Studio 10 Berlin WebBroker HTTP Port error - no peer with the interface with guid

I am using RAD Studio 10.1 Berlin, tried to create a REST sample application with following steps: New Project->Select Other->Web Server Application->Standalone Application->VCL Application->Port Number. I selected "Test Port" with 8080 and got this…
Ricky Nelson
  • 197
  • 1
  • 1
  • 7
0
votes
2 answers

how can I generate a SHA-1 byte array from a GUID in C++

I am using the funcitons in windows and generating a SHA-1 hash. Here is part of the function I am using, its not the entire fucntion but this function returns a GUID. GUID guid; res = CryptGetHashParam(hHash, HP_HASHVAL, (BYTE*)&guid, &dwHashLen,…
PMcK
  • 393
  • 1
  • 2
  • 11
0
votes
0 answers

NEWSEQUENTIALID() Generates partly utilized guid

Could anyone explain why the NEWSEQUENTIALID() generates a partly utilized GUID. Software I am writing uses Entity Framework, and whenever creating an entry into a table that uses GUID's as primary keys, for some reason the GUID's "node" component…
Gelion
  • 531
  • 7
  • 18
0
votes
0 answers

Change directory to an unmounted volume

I have a usb stick with 2 partitions; one is mounted the other one isn't. I wish to run a .bat file on the mounted partition which starts another .bat file on the 2nd partiion. I was using a loop which gets me the drive path of the 2nd partition by…
0
votes
1 answer

What does MS Sysinternals tool(Sysmon)'s guid meaning

I have a guid which Sysinternals tools named Sysmon left. It looks like this. 3/18 C591B94E-4BDD-5AAE-0000-001073B13706 4/4 C591B94E-1BFA-5AC5-0000-0010E76F3903 4/29 C591B94E-A33F-5AE5-0000-001074CA4C26 5/2(different windows account)…
0
votes
1 answer

Change each route's priority just gets their actionMethod work

I had a problem and it's been solved in the bellowing link: The activationCode is null in my method input when I click the email Verification link But I have another question. When I added another route like this: routes.MapRoute( name: "Password",…
1 2 3
99
100