Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. 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
Identificador