How do I setup the DB connections in my app to point to the RBS (Strataframe) database on a different server than my user database. Right now what I am doing is the following which is a connection string which points to the same server for both databases.
builder.DataSource = MyDataSource
builder.InitialCatalog = MyDataBase
builder.UserID = "sa"
builder.Password = MyPassword
DataLayer.DataSources.Add(
Thanks,
Jeff