Files
thpeetz-notes/Areas/cimt AG/Weiterbildung/Exasol Administration on premises.md
T
2026-02-12 15:03:44 +01:00

2.1 KiB

id, aliases, tags, status, subtitle
id aliases tags status subtitle
Exasol Administration on premises
process/project
process/course
Archiv Exasol Administration on premises

[!info]- Projekt Goal:: Journal/cimt AG/2024 Progress:: $= dv.view('project-progress', {file: 'Exasol Administration on premises'}) Target:: $= dv.view('project-target', {file: 'Exasol Administration on premises'}) Bar:: $= dv.view('project-progress-bar', {file: 'Exasol Administration on premises'}) Tasks:: $= const aufgaben = dv.page('Exasol Administration on premises').file.inlinks.where(t => { const mt = dv.page(t.path); return mt.tags?.includes('process/task') && mt.status === 'In Arbeit'}); if (aufgaben.length > 0) { dv.header(4, aufgaben.length > 1 ? "Aufgaben" : "Aufgabe"); dv.list(aufgaben) }

Status

  • Exasol Administration on premises [completion:: 2024-05-27] ^status

Project Info

  • keine Zertifizierung erforderlich

Thoughts

Resources

https://exacademy.exasol.com/courses/course-v1:Exasol+ONPREMISES+X/about

Review questions

Aufgaben

  • Kurs eingeschrieben [start:: 2024-02-29] [scheduled:: 2024-03-11] [completion:: 2024-03-21]
  • Kurs abgeschlossen [start:: 2024-03-01] [scheduled:: 2024-05-27] [completion:: 2024-05-27]

Offene Aufgaben

const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/task')).where(p => dv.page(p.path).file.tasks.length != dv.page(p.path).file.tasks.where(t => t.fullyCompleted === true).length);

dv.table(["Project", "Status", "Completed", "Tasks"], pages.map(p => {
	const page = dv.page(p.path);
	const tasks = page.file.tasks;
   	return [
   		page.file.link,
   		page.status,
   		tasks.where(t => t.fullyCompleted === true).length,
   		tasks.length
   	]
}));

Aufgaben

const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/task'));

dv.table(["Project", "Status", "Completed", "Tasks"], pages.map(p => {
	const page = dv.page(p.path);
	const tasks = page.file.tasks;
	return [
		page.file.link,
		page.status,
		tasks.where(t => t.fullyCompleted === true).length,
		tasks.length
	]
}));