CodeVerge.Net Beta


   Explore    Item Entry   Register  Login  
Microsoft News
Asp.Net Forums
IBM Software
Borland Forums
Adobe Forums
Novell Forums

ASP.NET Web Hosting – 3 Months Free!



Zone: > NEWSGROUP > Asp.Net Forum > starter_kits_and_source_projects.dotnetnuke.getting_started Tags:
Item Type: NewsGroup Date Entered: 2/23/2006 3:16:59 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 2 Views: 22 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
3 Items, 1 Pages 1 |< << Go >> >|
lilryno
Asp.Net User
Gizmo Bulk User Question (DNN2-DNN3)2/23/2006 3:16:59 PM

0/0

Edit:  Gizmo tech support got in touch with me.  The tables already existed but was no big deal.  It functions just as it should.

I'm so close to being upgrade to DNN3.  I used the Gizmo Bulk User transfer tool from Snowcovered and it successfully ported my userinfo from my DNN2.1.2 site into a .csv file.  I then uploaded their PA onto my new DNN3.2.2 site where I should be able to import my users from that .csv file.  Unfortunately, the install of that module had the SQL errors posted below.  Has anyone else used this module or have any vis on it?  I'm wondering if the claim of support for ASP2.0 should have been "requires ASP2.0" - but I don't know.  I'm not using the new framework.  If anyone has any experience with this I'd appreciate any tips.  I'm in a time crunch and their support on the other side of the world is probably sleeping.  The module installed but I don't want to try to upload my old userinfo for fear this module may mess up my database.  The SQL errors from the module installation were:

StartJob Begin Sql execution
Info Executing 01.00.00.SqlDataProvider
StartJob Start Sql execution: 01.00.00.SqlDataProvider file
Failure SQL Execution resulted in following Exceptions: System.Data.SqlClient.SqlException: Cannot DROP PROCEDURE 'dbo.fn_GetElement' because it is being referenced by object 'fn_GetProfileElement'. at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(SqlConnection connection, CommandType commandType, String commandText, SqlParameter[] commandParameters) at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(String connectionString, CommandType commandType, String commandText, SqlParameter[] commandParameters) at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(String connectionString, CommandType commandType, String commandText) at DotNetNuke.Data.SqlDataProvider.ExecuteScript(String Script, Boolean UseTransactions) if exists (select * from dbo.sysobjects where id = object_id(N'dbo.fn_GetElement') and xtype in (N'FN', N'IF', N'TF')) drop function dbo.fn_GetElement System.Data.SqlClient.SqlException: Cannot DROP PROCEDURE 'dbo.fn_GetProfileElement' because it is being referenced by object 'fn_ProfileGeoLookup'. at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(SqlConnection connection, CommandType commandType, String commandText, SqlParameter[] commandParameters) at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(String connectionString, CommandType commandType, String commandText, SqlParameter[] commandParameters) at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(String connectionString, CommandType commandType, String commandText) at DotNetNuke.Data.SqlDataProvider.ExecuteScript(String Script, Boolean UseTransactions) if exists (select * from dbo.sysobjects where id = object_id(N'dbo.fn_GetProfileElement') and xtype in (N'FN', N'IF', N'TF')) drop function dbo.fn_GetProfileElement System.Data.SqlClient.SqlException: There is already an object named 'fn_GetElement' in the database. at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(SqlConnection connection, CommandType commandType, String commandText, SqlParameter[] commandParameters) at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(String connectionString, CommandType commandType, String commandText, SqlParameter[] commandParameters) at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(String connectionString, CommandType commandType, String commandText) at DotNetNuke.Data.SqlDataProvider.ExecuteScript(String Script, Boolean UseTransactions) CREATE FUNCTION dbo.fn_GetElement ( @ord AS INT, @str AS VARCHAR(8000), @delim AS VARCHAR(1) ) RETURNS INT AS BEGIN -- If input is invalid, return null. IF @str IS NULL OR LEN(@str) = 0 OR @ord IS NULL OR @ord < 1 -- @ord > [is the] expression that calculates the number of elements. OR @ord > LEN(@str) - LEN(REPLACE(@str, @delim, '')) + 1 RETURN NULL DECLARE @pos AS INT, @curord AS INT SELECT @pos = 1, @curord = 1 -- Find next element's start position and increment index. WHILE @curord < @ord SELECT @pos = CHARINDEX(@delim, @str, @pos) + 1, @curord = @curord + 1 RETURN CAST(SUBSTRING(@str, @pos, CHARINDEX(@delim, @str + @delim, @pos) - @pos) AS INT) END System.Data.SqlClient.SqlException: There is already an object named 'fn_GetProfileElement' in the database. at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(SqlConnection connection, CommandType commandType, String commandText, SqlParameter[] commandParameters) at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(String connectionString, CommandType commandType, String commandText, SqlParameter[] commandParameters) at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(String connectionString, CommandType commandType, String commandText) at DotNetNuke.Data.SqlDataProvider.ExecuteScript(String Script, Boolean UseTransactions) CREATE FUNCTION dbo.fn_GetProfileElement ( @fieldName AS NVARCHAR(100), @fields AS NVARCHAR(4000), @values AS NVARCHAR(4000)) RETURNS NVARCHAR(4000) AS BEGIN -- If input is invalid, return null. IF @fieldName IS NULL OR LEN(@fieldName) = 0 OR @fields IS NULL OR LEN(@fields) = 0 OR @values IS NULL OR LEN(@values) = 0 RETURN NULL -- locate FieldName in Fields DECLARE @fieldNameToken AS NVARCHAR(20) DECLARE @fieldNameStart AS INTEGER, @valueStart AS INTEGER, @valueLength AS INTEGER -- Only handle string type fields (:S:) SET @fieldNameStart = CHARINDEX(@fieldName + ':S',@Fields,0) -- If field is not found, return null IF @fieldNameStart = 0 RETURN NULL SET @fieldNameStart = @fieldNameStart + LEN(@fieldName) + 3 -- Get the field token which I've defined as the start of the field offset to the end of the length SET @fieldNameToken = SUBSTRING(@Fields,@fieldNameStart,LEN(@Fields)-@fieldNameStart) -- Get the values for the offset and length SET @valueStart = dbo.fn_getelement(1,@fieldNameToken,':') SET @valueLength = dbo.fn_getelement(2,@fieldNameToken,':') -- Check for sane values, 0 length means the profile item was stored, just no data IF @valueLength = 0 RETURN '' -- Return the string RETURN SUBSTRING(@values, @valueStart+1, @valueLength) END
EndJob End Sql execution: 01.00.00.SqlDataProvider file
 
EndJob Finished Sql execution


DotNetNuke Bronze Benefactor
mzns1
Asp.Net User
Re: Gizmo Bulk User Question (DNN2-DNN3)2/23/2006 3:56:05 PM

0/0

If you need another alternative then try our free module.  You would simply need to import your .CSV file into an Access database (see documentation for structure) and then use our module to do the import.

The MIKEZ.UserImport module is available at http://www.mikez.com

As always, you should test this module on a development box.

mikez

 

lilryno
Asp.Net User
Re: Gizmo Bulk User Question (DNN2-DNN3)2/23/2006 4:03:43 PM

0/0

Thanks man.  This Gizmo one should do the trick hopefully.  I just need to confirm that it will import my old site's UserIDs exactly and then I'll upload and be good to go.  Want to make sure their UserIDs don't change although I wouldn't think they would.  But who knows.  If it's just "regestering" these users then maybe it won't keep the UserID intact and that would be bad since I have custom modules that need it.


DotNetNuke Bronze Benefactor
3 Items, 1 Pages 1 |< << Go >> >|


Free Download:


Web:
Snowcovered.com : Bulk User Import & Export v3.6.3 PA + Source by ... NEW from GIZMO! How? Easy with Bulk User Import & Export for DNN2, DNN3 & DNN4 ( DNN2 ..... Contact Information If you have any questions about this EULA, ...
Snowcovered.com : Bulk User Import & Export v3.6.3 PA by DNNWORKS ... NEW from GIZMO! How? Easy with Bulk User Import & Export for DNN2, DNN3 & DNN4 ( DNN2 .... A: Thank you for the question. Yes, Bulk User Import and Export is ...
DnnGear.com - DotNetNuke Connection Gizmo - Bulk User Registration Bulk User Registration v3 (BulkReg3) is a ..... Grey Skin by Rhoek.com unpacks DNN2 and DNN3 versions of the skin plus 14 ...
DotNetNuke Modules by Category Bulk User Registration v3 (BulkReg3) is a complete solution to create, update and delete thousands of users easily. BulkReg3 designed for DNN3 and fully ...
Webmaster Tools Developer: Gizmo Category: Webmaster Tools Bulk User Import & Export v3.6 ( BulkReg3.6) ... BulkReg3.6 is designed for DNN3 and fully supports Microsoft ASP . ...
BulkReg3 Hersteller, Gizmo. Beschreibung, Bulk User Import and Export (BulkReg) is a complete ... BulkReg designed for DNN3 and DNN4 with New Custom Profiles. ...
WWWCoder.com Feedage.com Gizmo - Bulk User Registration 2.0 for DNN3 ...... You can use it to move users from a DNN1 or DNN2 installation to any DNN2 installation. ...
The EntitySpaces Team Blog - EntitySpaces There have been quite a few questions about performance lately on our forums, that is, new users coming to our site and asking "How fast is EntitySpaces" or ...
ネタ:25297 youtube:24296 google:20584 web:18570 2ch:18094 ... 14 gizmo:14 band:14 ジオン:14 チャップリン:14 視覚:14 視覚化:14 保守とは何ぞ ...... gglj:2006-37:3 dotnetnuke:3 072メディアリテラシー:3 fudoumine:3 多言語:3 ...
Tools to scan for web vulnerabilities - ng.asp-net-forum.security ... gizmo bulk user question (dnn2-dnn3) · server side validation in wizzard · " server not found" quite often - is it dnn or host ? membership and roles help me ...




Search This Site:










install problem

skin question

dotnetnuke

hidden page property

fixed width for mainmenu_menuitemsel & mainmenu_menuitem only in horizontal bar - dnn 3.0.12, solpart-menu

discussion module & roles

dnn3 installation problem

dnn4.0 and framework version

will dnn3 ever support ms access!?

upload dnn to isp

file manager out of sync

more newbie help

header problem

installation problem

how to make the look and feel just like dnn main web site, no skins...

upgrade error 2.12 to 3

dotnetnuke.dll recompiling

upload directory - lack of folders

need more fields in the user accounts table

can't see designer view in vs2003

dnn online manual

privacy statement page modification

vs.net 2003 can't load project

removing read only from log files

dotnetnuke users - how do i add javascript?

ok to delete the 'admin' and 'host' accounts?

just get this error during install

register.ascx.vb : i modified and uploaded it but changes not being reflected

alias just loads portalid 1

could not find stored procedure 'dbo.gethostsettings'.

  Privacy | Contact Us
All Times Are GMT