HLstatsX Community Edition
  • Contents
  • Search
  • SourceBans
  • Forum
  • Help

ERROR
Database Error

Server Address: localhost
Server Username: hlstatsx

Error Diagnostic:
Bad query.

Server Error: (1194) Table 'hlstats_events_changeteam' is marked as crashed and should be repaired

Last SQL Query:
			INSERT INTO
				hlstats_EventHistory
				(
					eventType,
					eventTime,
					eventDesc,
					serverName,
					map
				)
			
		SELECT
			'Team',
			hlstats_Events_ChangeTeam.eventTime,
			IF(hlstats_Teams.name IS NULL, CONCAT('I joined team "', team, '"'), CONCAT('I joined team "', team, '" (', hlstats_Teams.name, ')')),
			IFNULL(hlstats_Servers.name, 'Unknown'),
			hlstats_Events_ChangeTeam.map
		FROM
			hlstats_Events_ChangeTeam
		LEFT JOIN
			hlstats_Servers
		ON
			hlstats_Servers.serverId = hlstats_Events_ChangeTeam.serverId
		LEFT JOIN
			hlstats_Teams
		ON
			hlstats_Teams.code = hlstats_Events_ChangeTeam.team
		WHERE
			hlstats_Events_ChangeTeam.playerId = 12026
		AND
			hlstats_Teams.game = 'css'