Small progress update... Got the LevelResource table to load, still not sure what all the fields are though. It needs {int, bigint, int, int, int, int}. The bigint has to be the exp field and I'm guessing the first int is the level.
After that, it needs an index created on dbo.Items. Here's sql that worked for me so far:
USE [Telecaster]
GO
/****** Object: Table [dbo].[Item] Script Date: 04/08/2011 20:37:05 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Item](
[sid] [bigint] NULL,
[account_id] [int] NULL,
[owner_id] [int] NULL,
[summon_id] [int] NULL,
[auction_id] [int] NULL,
[keeping_id] [int] NULL,
[idx] [int] NULL,
[code] [int] NULL,
[flag] [int] NULL,
[cnt] [int] NULL,
[level] [int] NULL,
[enhance] [int] NULL,
[endurance] [int] NULL,
[gcode] [int] NULL,
[create_time] [datetime] NULL,
[wear_info] [int] NULL,
[socket_0] [int] NULL,
[socket_1] [int] NULL,
[socket_2] [int] NULL,
[socket_3] [int] NULL,
[remain_time] [int] NULL,
[update_time] [datetime] NULL,
[COUNT] [bigint] NULL,
[elemental_effect_type] [tinyint] NULL,
[elemental_effect_expire_time] [datetime] NULL,
[elemental_effect_attack_point] [int] NULL,
[elemental_effect_magic_point] [int] NULL,
[KEEPING_ITEM_OWNER_UID] [int] NULL,
[RESULT_ITEM_ID] [bigint] NULL,
[RESULT_ITEM_COUNT] [bigint] NULL
) ON [PRIMARY]
GO
CREATE CLUSTERED INDEX [IDX_Item_Account_Id_Owner_Id_Auction_Id_Keeping_Id] ON [dbo].[Item]
(
[account_id] ASC,
[owner_id] ASC,
[auction_id] ASC,
[keeping_id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO
Now it loads the character list but it's completely blank. I'm guessing version mismatch but I can't say for sure just yet. If so, we may run into a brick wall eventually trying to get this to work because of too much hacking needed :(