Murtasma's Q&A profile
SQL Server Replication from SQL Server 2000 to 2005
Is it possible to replicate data from sql server 2000 to sql server 2005 I can't get them to even see each other. Please help. hi , yes it is possible. sql server 2005 is invisible from sql server 2000 you have to go to your 2005 server to register your 2000 server there. in the sql2k5 MS (management studio) asll servers are visible. those jobs that needs to be done from 2000 can be done on SQL 2k EM but those that can't be done there such as adding subscription can be configured on the 2005 MS where 2k server was registered there regards, joey ...Show All
SQL Server exporting an analysis server db from one server to another
how do i export an analysis services from one server to another i recently upgraded from analysis services 2000, so i didnt create the analysis services database and cubes in server 2005. Remember how you could save your db in analysis server 2000 as a cab file. is there any way to do that in analysis server 2005, so that i could simply then copy teh file over to a new server and add it If you simply trying to create a project based on the existing cubes, you can simly go into BI Dev studio and create new project using "Import Analysis Services 9.0 database" project type. Edward Melomed. -- This posting is provided "AS IS" with no wa ...Show All
SQL Server One large database or many small....
Hi Experts We are debating what is best: 1. To combine all the company's data in one large database, and use schemas and file groups to create logical and physical distribution on drives and namespaces or 2. Distribute the data into smaller databases with related data - eg. products and product description in one db, Customers in another and orders and orderlines in a third db. Just what are the pros and cons regards Jens Chr In almost any case I would suggest one database. The ability to use foreign key constraints is enough right there. The only reason I would suggest many databases is if you might need to seperate them into different servers, but that is very seldom. It is just so much easier to wo ...Show All
Visual C# best obfuscator
What is the best obfuscator out there each one of them claims to be better than the others. So which one to choose from One thing i noticed is that lost of obfuscator out there are more or less like "project product". They have a limited or sometimes none existent sale and support systems. The only one which looks commercially descent is dotfuscator (prob the reason why it is more pricey). So what is your take on Dotfuscator ...Show All
SQL Server Installing Sql25k client without using CD/DVD?
Hi everyone, We've found some problems when trying such thing. It seems that is compulsory to do via own CD/DVD. Any comment would be very appreciated. Thanks in advance, enric How are you trying to do the install If you share out the DVD/CD to a network drive and maintain the folder structures from the media, you should be able to install just fine. Thanks, Sam Lester (MSFT) ...Show All
Visual Basic How to not get combobox SelectedIndexChanged be executed on load
Hello, As what the subject line is.... What is the method to not allow combobox SelectedIndexChanged to be executed on load... and only make it to be executed when a "USER" changes the selection value. Thanks Using a flag has been the standard way to deal with this issue for years. It's not that the event 'should not be fired' it's 'you don't want it to' Implement the flag option. ...Show All
Visual C# Modify form attributes of the main app from extern class
Hi to all, I've this little problem that I can't resolve from my own, in a windows application created using VS2005. As you know I've a principal class, called program.cs, where the main create and launch the principal form application, which class is called form, as this code: static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form()); } Now, I've another class called Thread, that I create and run from the Form class. In this Thread class, I want to execute a method that add object to one listbox in my Form. I've created a public method in Form class but I can't call it from the Thread class because I don't know the name of the instance ...Show All
.NET Development My head spinning now - no solution yet (Need help calling a webmethod of a web service w/o any web reference)
Need help calling a webmethod of a web service w/o any web reference. I created a web service with one web method in it with no parameters. It returns an XML string and I'm trying to get that XML string in a windows service (or may be simple c# function). The location of the web service that is called, is based on a event - so adding a reference will not work for me. I tried couple of options using MSSOAPLib, HttpWebRequest, etc etc - nothing works. The only code works using MSSOAPLib in VB, and I can't get it to work in c#. Please help me with a piece of code that simply calls a webservice.webmethod and gets XML string in hand. (fyi, it works fine when I call this web service in IE). Here's my code: ----- web service - start: -- ...Show All
Visual Studio MSBuild Task Success\Failure
If I am using the MsBuild Task (to call another msbuild project file) how do I detect the success or failure of the msbuild task. I have tried the ONError to no avail. It doesn't get there if the callee msbuild task fails. I have tried the ContinueOnError both ways. Also, the msbuild task is for projects. How do I go about getting solutions <Target Name="BuildOtherProjects"> <MSBuild ContinueOnError="false" Projects="@(ProjectReferences)" Targets="Build"> <Output TaskParameter="TargetOutputs;BuildSucceeded" ItemName="AssembliesBuiltByChildProjects" /> </MSBuild> <Message Text="Project Fi ...Show All
.NET Development Transact SQL Query to return Sequence Number
I want to display the sequence number Column for the Row Returned, row wise. i.e. select empname,emp_age from [table Name] sl_no empname empage 1 Adams 45 2 Borris 55 3 Cathy 33 how should we include this 'sl_no' column within a select query Please Help ! If u just want to query data from database. I think SELECT sl_no, empname, emmpage FROM [table name] will work. If u wana get the value of the autoincresing column after "insert" or newing a row please refer to this article http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=740460&SiteID=1&mode=1 Is that ...Show All
Smart Device Development about SMS sending events detection
I want to implement a function which can detect SMS sending events,on the other hand,if some programs want to use SMS sending,the program I want to implement can detect this event and trigger some procedure. (Originally I search Microsoft.WindowsMobile.Status,but I can`t find SMS sending event which can register and detect it) Any help or guidance would be really appreciated. Thx. ...Show All
Visual Studio Latest MSDN library compatible with Visual Studio 2003?
Hi: Can the May 2006 MSDN library be integrated with Visual Studio 2003 If not, what is the latest that can be Best Nag If you have installed the May 2006 MSDN Library, you can add it to the VS 2003 collection. Go to this URL: ms-help://MS.VSCC.2003/VSCCCommon/cm/CollectionManager.htm and you will be able to turn on MSDN 2006 for Visual Studio 2005. Then restart Visual Studio. -ayman. ...Show All
Windows Forms MDI windows.
Using Visual C++ EE, I constructed Form1 and Form2. In Form1 declared three objects A, B, C of Form2 as MDI windows of the parent Form1 window. In Form1 there are also three threads that manipulate files displayed by the relevant Form2 MDI window. I do invoke from Form2 a method of Form1. What could I pass to the invoked method to know which (A, B or C) window is the invoker (I do not want to deal with which window has the focus.) Thank you for any guidance. ...Show All
Visual Studio 2008 (Pre-release) Problem: Channel closed after 10 minutes of inactivity
Hello, I am developing a client server application. The client openes a channel via NetTcpBinding on start up and closes it on shutdown. Instead of a generated proxy I am using ChannelFactory.CreateChannel(). The server uses InstanceContextMode.PerCall. After 10 minutes of inactivity the channel seems to be closed automatically. On the next call to the server I get a communication faulted exception because of the closed channel. How can I change the timeout value by code I am using the July CTP. I have attached the client code. Thanks for your help! Regards, Christoph Client code: private static IGlobalService Boot() { NetTcpBinding binding = new NetTcpBinding(SecurityMode.Message); binding.MaxConnections = 100; b ...Show All
.NET Development Track or Ping Nextel mobile phone
Hi, I want to write a desktop application using c#.net which will ping or track a Nextel mobile phone and get the current location of the mobile phone. Can anybody give me any idea how to accomplish this task. It's very urgent. Please help me. Thanks in advance. ...Show All
