
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-02-2013 06:48 PM
Solved! Go to Solution.
- Labels:
-
General Discussion

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-31-2013 08:53 PM
truncate table [tblNtlog]
GO
ALTER TABLE [tblNtlog] DROP CONSTRAINT [FK_tblntlog_tblntlogmessage]
GO
truncate table tblntlogmessage
GO
ALTER TABLE [tblNtlog] WITH NOCHECK ADD CONSTRAINT [FK_tblntlog_tblntlogmessage] FOREIGN KEY([MessageID])
REFERENCES [tblNtlogMessage] ([MessageID])
NOT FOR REPLICATION
GO
ALTER TABLE [tblNtlog] CHECK CONSTRAINT [FK_tblntlog_tblntlogmessage]
GO

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-01-2013 11:57 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-31-2013 08:53 PM
truncate table [tblNtlog]
GO
ALTER TABLE [tblNtlog] DROP CONSTRAINT [FK_tblntlog_tblntlogmessage]
GO
truncate table tblntlogmessage
GO
ALTER TABLE [tblNtlog] WITH NOCHECK ADD CONSTRAINT [FK_tblntlog_tblntlogmessage] FOREIGN KEY([MessageID])
REFERENCES [tblNtlogMessage] ([MessageID])
NOT FOR REPLICATION
GO
ALTER TABLE [tblNtlog] CHECK CONSTRAINT [FK_tblntlog_tblntlogmessage]
GO

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-31-2013 06:34 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-30-2013 07:10 PM
Msg 9002, Level 17, State 4, Line 1
The transaction log for database 'lansweeperdb' is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases
Msg 9002, Level 17, State 4, Line 1
The transaction log for database 'lansweeperdb' is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-30-2013 11:02 AM
1) Stop Lansweeper service
2) Run this sql script
DELETE FROM [tblNtlog]
GO
ALTER TABLE [tblNtlog] DROP CONSTRAINT [FK_tblntlog_tblntlogmessage]
GO
DELETE FROM [tblntlogmessage]
GO
ALTER TABLE [tblNtlog] ADD CONSTRAINT [FK_tblntlog_tblntlogmessage] FOREIGN KEY([MessageID]) REFERENCES [tblNtlogMessage] ([MessageID])
GO
3) Start Lansweeper service

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-30-2013 07:53 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-02-2013 06:56 PM
- Link to this forum thread.
- Program Files (x86)\Lansweeper\Service\Errorlog.txt, as present on your Lansweeper server, so we can see which Lansweeper version you're using.
- Screenshot of the Configuration\Scanning Setup\Database Scripts section of the web console, so we can see your table sizes and database server edition and version.
