Kayako logo
SupportSuite, eSupport and LiveResponse Discussion, troubleshooting and feedback related to Kayako's flagship support desk products SupportSuite, eSupport and LiveResponse.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  (#1) Old
ZeroSixty Offline
New Member
 
Posts: 18
Join Date: Jan 2005
Arrow swparserlogs table - 17-02-2006, 11:38 AM

Hello,

I have accidentally removed the swparserlogs table from the database. Can someone please tell me how to create this again ASAP?

How many fields and their names?
   
Reply With Quote
  (#2) Old
v0lc4n0 Offline
New Member
 
Posts: 16
Join Date: Jul 2005
Lightbulb 18-02-2006, 10:40 AM

Quote:
Originally Posted by ZeroSixty
Can someone please tell me how to create this again ASAP?

How many fields and their names?
Here is SQL command for re-creating table swparserlogs table.
Code:
CREATE TABLE `swparserlogs` (
  `parserlogid` int(10) unsigned NOT NULL auto_increment,
  `typeid` int(10) unsigned NOT NULL default '0',
  `ticketmaskid` varchar(20) NOT NULL default '',
  `dateline` int(10) unsigned NOT NULL default '0',
  `emailqueueid` int(10) unsigned NOT NULL default '0',
  `logtype` enum('failure','success') NOT NULL default 'failure',
  `subject` varchar(255) NOT NULL default '',
  `fromemail` varchar(255) NOT NULL default '',
  `toemail` varchar(255) NOT NULL default '',
  `size` int(10) unsigned NOT NULL default '0',
  `description` varchar(255) NOT NULL default '',
  `parsetimetaken` float unsigned NOT NULL default '0',
  `responsetype` enum('ticket','reply','bug') NOT NULL default 'ticket',
  `ticketpostid` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`parserlogid`),
  KEY `parserlogs2` (`ticketpostid`),
  KEY `parserlogs3` (`dateline`)
) TYPE=MyISAM;
   
Reply With Quote
  (#3) Old
ZeroSixty Offline
New Member
 
Posts: 18
Join Date: Jan 2005
18-02-2006, 02:57 PM

Thank you
   
Reply With Quote
Reply

Tags
swparserlogs, table

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
corrupt swauditlogs table - what do I do? pdc_irl SupportSuite, eSupport and LiveResponse 2 23-05-2007 11:48 AM
How do I relate the tickets table to the customfields table? slarson Developers & Code 3 14-05-2007 06:11 PM
Error Creating Tables Danym SupportSuite, eSupport and LiveResponse 1 03-11-2006 11:22 AM



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47