|
Using System;
using System.Data;
using Microsoft.SqlServer.Management.Smo;
namespace Application3
{
class Program
{ static void Main(string[] args)
{
SetServerVariables();//this method will set the server variables
Server srv = new Server(this.serverName...
Answer Snippets (Read the full thread at microsoft):
I have fixed that issue by using the below code:
Previously I was giving like this:
srv = new Server(this.serverName);
Now I modified my code as given below:
ServerConnection connection = new ServerConnection(this.serverName... .
Hi Sean,
Thanks for your response.
|
|
On Thu, 9 Jul 2009 00:47:01 -0700, John Quinney <JohnQuinney@discussions.microsoft.com
Hi,
The company I work for is looking to migate to AX2009 SP1/SQL2008 but we're
looking to do the upgrade in two steps, frist update the database and then...
Started by John Quinney on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at omgili):
If you have access to the partnersource, you can find the
system requirement for Ax4.0 and SqlServer2008.
|
|
I am performing a review on different kind of ORM tooling and DAL generators today. One of them is NetTiers.
I have a classic DB model with customer, order, orderdetail, etc..
I want to perform a complex inner join on those tables. This is the orginal...
Started by Patrick Peters on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The method return type will probably be a DataSet in this case(not sure... .
Why not create a custom stored procedure for that, nettiers generates specific methods for stored procedures under the TableProvider class, afterwards you can simply call your methd .
|
Ask your Facebook Friends