`Alex Kurganov[alex@webley.com]
`From:
`Valery Zhukov[zhukoff@webley.com]
`Sent:
`Tue 12/14/1999 11:20:01 AM (UTC)
`Subject: New table for agents
`Alex,
`
`I propose the next table to be used by webley agents.
`Could you please review it and pass it to Alex to create it?
`Thank you.
`
`Valery
`
`SETUSER 'dbo'
`go
`
`create table dbo.mcVoiceData (
`
`sessionId int not null, // ID of voice session
`timeStamp int null, // time of session beginning
`row int not null, // row number to order by
`type varchar(10) not null, // type of row (link, text, phone, etc. )
`data varchar(255) null, // url, phone number, e-mail address, and other internal data
`data2 varchar(255) null, // additional storage for data
`text text null, // text to read to user that describes the data
`
`object varchar(255) null, // original object on html/wml page
`locaton varchar(255) null, // location of the object within the page
`objectId varchar(255) null // object id (name, etc.)
`
`)l
`
`ock allpages
`on 'default'
`go
`
`print 'index01'
`create unique nonclustered index index01
`on dbo.mcServices (sessionId)
`with ignore_dup_key
`on 'default'
`go
`
`print 'index02'
`create unique nonclustered index index02
`on dbo.mcServices (row)
`with ignore_dup_key
`on 'default'
`go
`
`grant Delete on mcVoiceData to public
`go
`
`grant Insert on mcVoiceData to public
`go
`
`grant References on mcVoiceData to public
`
`Parus Exhibit 2057
`Google, et al. v. Parus Holdings, Inc.
`IPR2020-00846
`Page 1 of 2
`
`
`
`go
`
`grant Select on mcVoiceData to public
`go
`
`grant Update on mcVoiceData to public
`go
`
`SETUSER
`go
`
`Parus Exhibit 2057, Page 2 of 2
`
`