In C# I can generate random number from a string like this:
public string CreateRandomNumber(string normal)
{
string abnormal = (new Random(normal.GetHashCode())).Next().ToString();
return abnormal;
}
But I want to do the same (kind of) operation inside the oracle database. So, how can I generate a random number from a string ?