Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Primero conecte el archivo de base de datos powerBI whith sqlite aquí
Pero, ¿cómo puedo usar el campo ROWID en mis relaciones con powerBI?
Gracias de antemano.
hola @jandres
Necesita cargar la tabla que contiene el campo ROWID en power bi,entonces podría usarlo en relaciones powerBI
https://docs.microsoft.com/en-us/power-bi/transform-model/desktop-create-and-manage-relationships
https://docs.microsoft.com/en-us/power-bi/transform-model/desktop-relationships-understand
saludos
Lin
En SQLite, las filas de tabla normalmente tienen un ROWID entero de 64 bits con signo que es único entre todas las filas de la misma tabla
Ejemplo:
CREAR TABLA "AREA_DEFINITION" (
"AREA" INT,
"TIPO" INT NO NULO,
TEXTO "DATETIME" NO NULO,
CLAVE PRIMARIA("TYPE")
);
seleccionar ROWID en AREA_DEFINITION;
CREAR TABLA "AREA" (
"AREA" INT,
TEXTO "DATETIME" NO NULO,
FOREIGN KEY("AREA") HACE REFERENCIA "ATTRIBUTE_DEFINITION"("ROWID")
CLAVE PRIMARIA ("AREA")
);
Pero cuando carga toda la tabla en PowerBI apper errores
Identificador
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.