Blackboard Learn Logo
Home » Blackboard » Blackboard Learn » SQL Queries » SQL: Find Courses with the Blackboard Collaborate Original B2 in the Course Menu

SQL: Find Courses with the Blackboard Collaborate Original B2 in the Course Menu

Summary

This SQL query will return a list of courses that contains the Blackboard Collaborate Scheduling Manager Tool Link in the course menu.

Code

SELECT ct.label, ct.internal_handle, ct.enabled_ind, cm.course_name, cm.course_id
FROM PUBLIC.course_toc ct
INNER JOIN course_main cm
ON cm.pk1 = ct.crsmain_pk1
WHERE internal_handle = 'bb-collaborate-nav-1'
--Filter by Spring 2020 courses
--AND cm.course_name LIKE '%Spring2020%'
--Filter by courses with the tool link visible to students
--AND ct.enabled_ind = 'Y'
ORDER BY cm.course_name ASC

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.

Eric Silva

Eric is a Systems Analyst and Blackboard Administrator at The University of Texas at San Antonio, and a graduate from Boise State University. Learn more about me.

Advertisement

Add comment

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Advertisement

Categories

Advertisement