Hi Keagan - there isn't an exact fit between the datatypes that SQL uses and the ones that BP uses, GUID being one of them. Basic text and numbers work fine, but you have to handle more specialised datatypes differently. So rather than do a SELECT *, you'll have to be explicit with the column names, eg SELECT [First Name], [Last Name]. For the GUID, use SQL to convert the GUID to text so that BP will be able to accept it, eg SELECT CAST([GUID Column] AS CHAR(36)) AS [GUID Column]