SpawnPoint


Go Back   SpawnPoint > SpawnPoint General > Site Support & Suggestions

Site Support & Suggestions Spot a bug, or a Broken Link? Got a Suggestion for a new idea or feature on SPAWNPOINT? Post here! Let us know about it!



Reply
 
Thread Tools
Old 10-30-2006, 07:14 AM   #1 (permalink)
Bullet Bullet will become famous soon enough
Reputation: 50
SpawnPoint VIP
 
Member's Mood

Hackers Caught: 60
Default PM SQL error

when i pm, this is what i get:


Microsoft OLE DB Provider for SQL Server error '80040e2f' Cannot insert the value NULL into column 'isRead', table 'spawn.dbo.pgd_PMreceive'; column does not allow nulls. INSERT fails. /ASP/pmsend.asp, line 194
__________________
BULLET
Bullet is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Activity Longevity Today Posts
0/20 15/20 0/5
1,111
Reply With Quote
Old 11-02-2006, 09:35 AM   #2 (permalink)
Swirsk Swirsk is on a distinguished road
Reputation: 23
SpawnPoint VIP
 
Swirsk's Avatar
 
Member's Mood

Hackers Caught: 27
Default RE: PM SQL error

Im having the exact same problem.

Swirsk is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Activity Longevity Today Posts
0/20 16/20 0/5
406
Reply With Quote
Old 11-02-2006, 10:32 AM   #3 (permalink)
cpnichol cpnichol is just really nicecpnichol is just really nicecpnichol is just really nicecpnichol is just really nicecpnichol is just really nice
Reputation: 427
Resolution Manager
 
cpnichol's Avatar
 
Member's Mood

Hackers Caught: 621
Default RE: PM SQL error

Me too.
__________________
"The LHC was not designed to destroy the universe" - The Daily Mail
cpnichol is online now  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Activity Longevity Today Posts
13/20 19/20 3/5
3,255
Reply With Quote
Old 11-02-2006, 05:40 PM   #4 (permalink)
Bullet Bullet will become famous soon enough
Reputation: 50
SpawnPoint VIP
 
Member's Mood

Hackers Caught: 60
Default RE: PM SQL error

lol, thats good to hear sorta. is the error you guys recieve EXACTLY like the one i originally posted? reason i ask, is that was the guys in the back have a constant to work with and not just some random issue. makes things easy
__________________
BULLET
Bullet is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Activity Longevity Today Posts
0/20 15/20 0/5
1,111
Reply With Quote
Old 11-02-2006, 06:14 PM   #5 (permalink)
Swirsk Swirsk is on a distinguished road
Reputation: 23
SpawnPoint VIP
 
Swirsk's Avatar
 
Member's Mood

Hackers Caught: 27
Default RE: PM SQL error

Yes the error is exactly the same and i get it when i use firefox and explorer.
Swirsk is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Activity Longevity Today Posts
0/20 16/20 0/5
406
Reply With Quote
Old 11-05-2006, 04:34 AM   #6 (permalink)
Bullet Bullet will become famous soon enough
Reputation: 50
SpawnPoint VIP
 
Member's Mood

Hackers Caught: 60
Default RE: PM SQL error

I am currently recieving this error thus far.... and it sucks, LOL. NO MORE PM'S!!!
__________________
BULLET
Bullet is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Activity Longevity Today Posts
0/20 15/20 0/5
1,111
Reply With Quote
Old 12-15-2006, 10:14 AM   #7 (permalink)
Swirsk Swirsk is on a distinguished road
Reputation: 23
SpawnPoint VIP
 
Swirsk's Avatar
 
Member's Mood

Hackers Caught: 27
Default RE: PM SQL error

I am still getting this error, anyone know whats causing it?
Swirsk is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Activity Longevity Today Posts
0/20 16/20 0/5
406
Reply With Quote
Old 12-19-2006, 03:24 PM   #8 (permalink)
SpawnPoint Elite
 

Hackers Caught: 28
Default RE: PM SQL error

Quote:
ORIGINAL: Bullet

when i pm, this is what i get:


Microsoft OLE DB Provider for SQL Server error '80040e2f' Cannot insert the value NULL into column 'isRead', table 'spawn.dbo.pgd_PMreceive'; column does not allow nulls. INSERT fails. /ASP/pmsend.asp, line 194
Description: This indicates a problem with your SQL Server installation. At least one of the databases on your database server has a missing or corrupt owner. The system stored procedure "sp_helpdb", which lists your existing databases, requires a valid owner for every database in order to run. To see what's happening, open Query Analyzer and run: exec sp_helpdb. You will see an error message like the one above. Common Cause: Outside of SQL Server, the database owner's Windows account gets deleted. This sours things within SQL Server, it orphans that database. Solution: Following is the response I've seen two Microsoft reps post on groups. <dbname> is the database with the missing or corrupt owner. 1)
Use <dbname>
sp_changedbowner '[new user not in db already]'
--this will work & sp_helpdb will execute correctly

2) Then execute the same query using sa & it will work:
Use <dbname>
sp_changedbowner 'sa'
--The dependent aliases were mapped to the new database owner. Database owner changed. Of course, you may not know which database has the problematic owner. Here's from a Microsoft Rep ([link=http://groups.google.com/groups?hl=en&lr=lang_en&ie=UTF-8&oe=UTF-8&newwindow=1&safe=off&selm=OKFdKJ9sDH A.4060%40TK2MSFTNGP11.phx.gbl]view thread[/link]): The database owner SID will become invalid if the owner's Windows account is
deleted. This causes problems with sp_helpdb because of the NULL account
name returned from SUSER_SNAME().. You can identify these problem databases
with the script below and correct the problem by executing sp_changedbowner
with a valid login.
SELECT name
FROM master..sysdatabases
WHERE SUSER_SNAME(sid) IS NULL
__________________
When God keeps silent, we can make him say what we want.
TonyDLucky is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Activity Longevity Today Posts
0/20 13/20 0/5
329
Reply With Quote
Old 12-19-2006, 03:51 PM   #9 (permalink)
Labec Labec has a spectacular aura aboutLabec has a spectacular aura about
Reputation: 181
Management Team
 
Labec's Avatar
 
Member's Mood
Member's Contacts

				Steam ID

Hackers Caught: 12
Default RE: PM SQL error

Try now - should be fixed
__________________
Labec is online now  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Activity Longevity Today Posts
5/20 18/20 1/5
1,288
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

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 Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
wth is this error BadReligion [SP] Other Server Sessions 3 05-03-2007 07:28 PM
theres an error 1nfamous_fcuk General Games Discussion 3 03-14-2007 11:52 PM
minimizing error KILLER_MIKEgunman3 [SP] Counter-Strike Source Sessions 4 10-18-2006 09:21 AM
server error darkslugsgt Ask a Tech 1 09-29-2006 11:04 AM
Error message! PBshooter Report an Incident 10 07-24-2006 11:14 PM


All times are GMT -5. The time now is 11:11 AM.


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

SpawnPoint: Game File Community featuring PC Video Gaming, Free PC Games, Counter-Strike, Action And Strategy Files, Game Forums and Game News


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