From this short Mathematica program while investigating the convergence of the Dirichlet series for the Möbius function:
Clear[a, b, s, x];
s = 1/2 + 100*I;
Limit[1 - Sum[1/a^s, {a, 2, x}] +
Sum[Sum[1/(a*b)^s, {a, 2, x}], {b, 2, x}], x -> Infinity]
I get the output:
where Out[186]= is left unevaluated.
Does that mean that the limit exists but it is not known in the form of standard functions?

First, we consider
Second (The crucial tool is an assumption.),
At last,
Addition. The OP additionally requires
a*b<=x. In fact, this is not any restriction because the limit asx->Infinityis taken. The sum of a double series does not depend on an exhaustion. Since, the convergence depends only on
\[Sigma]. It's more or less clear, that\[Sigma]should be greater than1to this end (I don't go into math deep.). Therefore,The same with
Sum[1/a^s, {a, 2, x}]. Making use of Mathematica, we obtain the same answer as in MSE. The true convergence of a series is its absolute convergence. In view of it the series from the question are not absolutely convergent fors = 1/2 + 100*I.