Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register 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
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.