I think about it like this.
Assume that the i'th constraint looks like this
sum_j <A_{ij},X_j> = b_i
and X_j is the j'th block and A_{ij} is a symmetric matrix. Now let us create a symbolic matrix called H.
H_ij = 0 <=> A_{ij} = 0, otherwise H_{ij} = 1
Note
H_{ij} is a scalar
A_[ij} is matrix
Then the sparsity pattern of HH' will denote the sparsity pattern of the matrix (=Schur complement) we going to factor.
So we can easily factor HH' if it has a nice sparsity structure for instance an arrow matrix.
I made the natural assumption that if there is only ONE semidefinite variable then A_{i1} != 0 for all i and hence H will consist of 1 dense
column.
If you have many small semidefinite variables the situation can be much better.
[Now I hope my memory of this is intact and I am not telling you nonsense. The Japanese SDP group is talking about correlative sparsity and I think that is the same or at least related.
Once again my memory may be vague.]