|
Yeah, back in the 7.x days, I migrated from Snitz, then further on, upgraded to 8.x
My tblPermissions currently looks like the below - does anything else need changing?
| Name |
Data Type |
Size |
Nulls |
Default |
| Group_ID |
int |
4 |
N |
|
| Author_ID |
int |
4 |
Y |
|
| Forum_ID |
int |
4 |
Y |
|
| Read |
bit |
1 |
Y |
(0) |
| Post |
bit |
1 |
Y |
(0) |
| Reply_posts |
bit |
1 |
Y |
(0) |
| Edit_posts |
bit |
1 |
Y |
(0) |
| Delete_posts |
bit |
1 |
Y |
(0) |
| Priority_posts |
bit |
1 |
Y |
(0) |
| Poll_create |
bit |
1 |
Y |
(0) |
| Vote |
bit |
1 |
Y |
(0) |
| Attachments |
bit |
1 |
Y |
(0) |
| Image_upload |
bit |
1 |
Y |
(0) |
| Moderate |
bit |
1 |
Y |
(0) |
| View_Forum |
bit |
1 |
N |
(1) |
| Display_post |
bit |
1 |
N |
(0) |
| Calendar_event |
bit |
1 |
N |
(0) |
From looking at the msSQL_server_setup.asp, I assume it's supposed to look like this;
Posted By: WebWiz-Bruce
Date Posted: 02 November 2006 at 5:11pm
Yes the second one looks more correct, except you can delete the 'Read' field as that is no-longer used in version 8.
------------- https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting
|
Posted By: MortiOli
Date Posted: 02 November 2006 at 6:46pm
|
Thanks Borg.
Any ideas on what this error means though, as it's what I receive when I try and remove the field in ASP.Net Enterprise Manager;
The object 'DF_tblPermissions_Read' is dependent on column 'Read'. ALTER TABLE DROP COLUMN Read failed because one or more objects access this column.
Thanks
|
Posted By: WebWiz-Bruce
Date Posted: 02 November 2006 at 6:48pm
You should use something like Microsoft's SQL Management Studio to remotely administer SQL Server
------------- https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting
|
Posted By: MortiOli
Date Posted: 02 November 2006 at 8:29pm
|
Thanks Borg - seems a great program, and free, suprisingly!
Managed to change all but one setting - currently logged with my host.
Cheers!
|
|