StrataFrame Forum
Home      Members   Calendar   Who's On
Welcome Guest ( Login | Register )
      


12»»

Stand alone install?Expand / Collapse
Author
Message
Posted 04/06/2007 7:56:31 AM


Advanced StrataFrame User

Advanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame User

Group: StrataFrame Users
Last Login: Today @ 9:32:11 AM
Posts: 597, Visits: 13,906
I don't see the DDT standalone install under my download section, where can I get it please? I need to install DDT at a customer site that does not have Visual Studio installed to do a deployment of a database today.

Thanks.
Post #7933
Posted 04/06/2007 8:50:58 AM


StrataFrame User

StrataFrame UserStrataFrame UserStrataFrame UserStrataFrame UserStrataFrame UserStrataFrame UserStrataFrame UserStrataFrame User

Group: Forum Members
Last Login: 10/31/2007 5:20:05 PM
Posts: 374, Visits: 1,197
Hi Keith;

That's a good point and I had thought about it, but I'm not sure we are allowed to install DDT at customer site. I "think" it's meant to be used in your system to create a deployment/installation package.

However, I can see the need [for myself soon], to install DDT on a tester site, in order to make changes to database.

Let's hear it from the boys!

..ßen
Post #7934
Posted 04/06/2007 9:00:36 AM


Advanced StrataFrame User

Advanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame User

Group: StrataFrame Users
Last Login: Today @ 9:32:11 AM
Posts: 597, Visits: 13,906
I know it is "allowed" because Ben said it was OK yesterday

I would still like to be able to have access to standalone DDT install BUT, not having it available nudged me to take the 10 minutes it took to include package deployment as a menu option in my application.

All I added was a menu item with the following code (and added a PW to my package file to keep silly customers out)

'-- Establish Locals
Dim appPath As String

appPath = System.Windows.Forms.Application.StartupPath
MsgBox("apppath")

Dim lcPath As String = AddBS(appPath) & "metadata"
Dim loDeploy As MicroFour.StrataFrame.DBEngine.Deployment.MDDeployMain

'-- Create the deployment form
loDeploy = New MicroFour.StrataFrame.DBEngine.Deployment.MDDeployMain(lcPath & "la_rpm_.scan_db.pkg", "")

loDeploy.ShowDialog()
loDeploy.Close()
loDeploy.Dispose()
Post #7936
Posted 04/06/2007 9:04:21 AM


Advanced StrataFrame User

Advanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame User

Group: StrataFrame Users
Last Login: Today @ 9:32:11 AM
Posts: 597, Visits: 13,906
gotta love cut and paste from the sample application
Post #7937
Posted 04/06/2007 9:05:03 AM


StrataFrame User

StrataFrame UserStrataFrame UserStrataFrame UserStrataFrame UserStrataFrame UserStrataFrame UserStrataFrame UserStrataFrame User

Group: Forum Members
Last Login: 10/31/2007 5:20:05 PM
Posts: 374, Visits: 1,197
I know it is "allowed" because Ben said it was OK yesterday


I didn't say that yesterday... (j/k) I know which Ben you're talking about. But if that's the case, I think we should get an stand alone installation right from the web site.

SF, can we please...?

..ßen
Post #7938
Posted 04/06/2007 9:07:55 AM


Advanced StrataFrame User

Advanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame User

Group: StrataFrame Users
Last Login: Today @ 9:32:11 AM
Posts: 597, Visits: 13,906
It used to be there, of that I am sure.

Either they bundled it in with the new install only (and I don't know how to install JUST the DDT) or it is missing.

I guess we shall see when the sun rises in Texas
Post #7940
Posted 04/06/2007 10:07:12 AM


StrataFrame Developer

StrataFrame Developer

Group: StrataFrame Developers
Last Login: Today @ 8:12:17 AM
Posts: 4,243, Visits: 4,288
Keith,

We no longer provide the DDT stand alone install as predominantly every one of our users were developers using the DDT over SQL administrators.  So it was axed since it was just one more installation to maintain.  As it sounds like you have already learned, it is very easy to create a .NET program to deploy your packages and is the "proper" way to deploy a database in the field   This is why we provided the Database Deployment sample...which you found...and made it your own

Just to explain a bit, the DDT stand alone install was NEVER designed with deployment in the field in mind.  That is why there is the DatabaseMigrator class.  If you think about it, this is exactly how we install the StrataFrame databases during an installation and this is how you should deploy to your customers.  That is why we provided the sample so you could see your options on how to do this.

Post #7944
Posted 04/06/2007 10:28:11 AM


Advanced StrataFrame User

Advanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame UserAdvanced StrataFrame User

Group: StrataFrame Users
Last Login: Today @ 9:32:11 AM
Posts: 597, Visits: 13,906
OK. Like I said earlier this week "you cant fight the man".

I will miss is very much though, for making on site adjustments at my clients, now I will have to buy a real laptop I guess that will run VS2005/SF/DDT to accomplish this

Post #7945
Posted 04/09/2007 8:58:26 AM


StrataFrame Developer

StrataFrame Developer

Group: StrataFrame Developers
Last Login: Today @ 9:05:01 AM
Posts: 2,666, Visits: 1,878
Sorry if I misspoke Keith... I thought your deployment scenario was that you were going to have the DDT installed on your computer and with remote access to the SQL Servers through TCP 1433 you would deploy from your DDT to their SQL Servers.  Each install of the DDT takes a license.  You can deploy through the MicroFour StrataFrame DBEngine.dll royalty free, but the DDT can't be deployed without a license.

Incidentally, the deployment dialogs within the DDT are included in the DBEngine.dll so you don't even have to write a UI... just a program that will call the MDDeployMain will get you there.


www.bungie.net
Post #7981