Rasnarok's Q&A profile
SQL Server R
When I am using aggregations design wizard it is stopping at 49%, even through I am asking to go for 100% performance or choose until I stop option. This happens only to one cube, for other cubes wizard works fine. What could be preventing the wizard not to reach 100% Thanks. I am using SQL 2005. You are right about not needing 100% aggregations in most situations. My question still is why the wizard not reaching 100% performance. Is this a bug Is there any way I can calculate how many aggregations will be for 100% pre aggreagations If I can calculate that number then I would know if the wizard is showing less than 100% but it actually got all the aggregations. Thanks. ...Show All
Visual C# Process.start() how to
Hi All, I'm using process.start() to execute msbuild.exe. Is there any properties or method that I could set or call to wait until it completely finished before the next line of code get executed Best Regards, I need to do the automated testing with all the cs & vb projects. Just need to start the open/start the project file and then I will run it through the testing tool. The process should wait till the testing process completes. Is it possible Please suggest me. Thanks for your golden time spent to me. ...Show All
SQL Server need Suggestion/advice
Hi guys, I would like to be advised from experts on one career related question. I have 5 + years of Experience as a DEV and Test. I had mostly worked on VB6, .NET 1.1[ asp.net ,C#] for 3 years as DEV and since 2 years i am into Software System testing [ its more related to Functionality Testing of applications built using .NET [ asp.net/c#, Sql server 2005 ]. I would like to switch the career to Core Development again and would like to seek experts's adivice.. Iam interested in learning SQL Server 2005 advanced features[ BI]: Could you pls suggest me one area in SQL server 2005 from below[ parameters:I should be able to learn it quickly on my own,great demand in the market , great scope for development in near fure e ...Show All
Windows Forms Any sample pages how to use regex with RichTexBox?
I am using Richtextbox in my form application.I wanted to find some regex str and replace it one by one.Any sample pages how to use regex with RichTexBox Thanks Regex doesn't work with controls, only strings. You can retrieve the text from the RTB and then pass the text to Regex for parsing. Search for Regular Expressions in MSDN for many examples. You might also find Regulator ( http://tools.osherove.com/CoolTools/Regulator/tabid/185/Default.aspx ) a useful tool for testing REs prior to using them in code. Michael Taylor - 7/26/06 ...Show All
Visual Studio Debugger starts and stops without running application
If I create a new project (i.e. Windows Application), put a button on the form and then try to start the debugger, it will "start" and "stop" within a second or two. No form is displayed. If I run it outside the debugger, no form is displayed. If I add code behind the button and try to set a breakpoint, it is ignored. This occurs for both Visual Basic 2005 Express and Visual C# 2005 Express. Any ideas The exit code is -1073741819. In the knowledge base, the error code exists for other applications, but not for Visual Studio. ...Show All
Visual Basic Help with Crystal Report in Visual Studio 2005
Hey everyone, I am pretty new to VS 2005 and crystal reports. I have setup a crystal report and i have setup a form for the crystal report to be displayed in. Now i don't know how to fill the report with information from the database. Can someone please help me. The database is MS Access. Soon to move to a SQL database. Thanks, QWERTYtech Have you searched the MSDN library There should be examples... Once you've got the report built, you just need to provide it with an instance of the datasource at run time. Let's say that you build the report (called myCrystalReport) off of a DataSet called "myDataSet". You would then in code (after filling the dataset with records) u ...Show All
SQL Server Beginner's questions
Hello, I have two database servers that I am interested in sending messeges between them. I am not interested in security or encryption at this point, only a simple message sending and recieving. Can someone please provide simple scripts for object setup (certificates, queues etc) and message send and recieve a link to such a script will be great as well. I am just a bit lost understanding all the new concepts (certificates, service, service binding.....) Thank you I. Thanks Remus, that really helped. I am getting a different error message now : Connection handshake failed. The login 'NT AUTHORITY\ANONYMOUS LOGON' does not have CONNECT permission on the endpoint. State 84. ...Show All
Visual C++ String to integer
I am using Visual Studio 2005, C++ and Net 2.0. I want to examine a String and extract an integeral value. Assume the following variables : String^ theInput = "Lat=75"; int lat; I want to examine theInput and store the value 75 in lat. Is there a simple, straightforward way to accomplish this A code sample would be appreciated. Gordon. duck thing wrote: Please post questions of this nature on the newsgroups. This forum is intended for C++/VC++ language issues rather than general programming questions. He's within reasonable boundaries :) ...Show All
Visual Studio Express Editions messagebox acting strangely
Hi all, I've got a sub that I call to load a bunch of random numbers into a few arrays. The random numbers are generated in the array using the: dim r as new random r.Next(0, 4) method, and a for loop cycles the random number generation process a few times... When i put a messagebox in the middle of the function's for loop (before it actually loads the numbers into the arrays), different instances of the same array are truly different (which is the way it should be), and when I don't use the messagebox, even though the numbers were randomly generated moments before, they are all the same between instances.... It's really weird! Does anyone have any ideas that could explain this behaviour I'm sorry if I'm not being specific enough... if ...Show All
SQL Server Read CSV file - Save Columns into Rows
I want to import CSV file and convert columns into rows depending on Customer count(2nd record in each row of CSV file) and save to SQL table --CSV file format State, Customer_Count, Name_1, Total_1,Name_2, Total_2,Name_3, Total_3..can go upto 600 GA,2,'John Doe',14.00,'Roger Smith',15.00 FL,3,'John Doe',14.00,'Roger Smith',15.00,'Sally Cox',16.00 SC,5,'John Doe',14.00,'Roger Smith',15.00,'Sally Cox',16.00,'James Brown',17.00,'Rick Davis',18.00 Data in SQL table from csv file should look like this State,Name,Total GA,John Doe,14.00 GA,Roger Smith,15.00 FL,John Doe,14.00, FL,Roger Smith,15.00 FL,Sally Cox,16.00 I have multiple CSV files with millions of records. How can i achieve this using Integration Services or Bulk Data ...Show All
Windows Forms Tooltip component to have TTS_CLOSE...
Any way to pass TTS_CLOSE to the Tooltip component so that it will have a 'close window'... I am aware of the contents in that link. My question is aimed at the Tooltip component that comes with .Net 2.0 framework. Currently am using the code in the link that you have mentioned. But, what I am more interested in is extending the 2.0 component instead of 're-inventing' the wheel... Any way I can achieve that ...Show All
Windows Forms Multiple dependent combo boxes binding to the same parent-child datasource
I have a parent-child datasource that I want to bind to TWO pairs of dependent combo. The parent-child datasource is itself is dependent on a master combobox. That is to say, when the master combo changes, I retrieve the parent-child datasource from the database and bind it to the first pair of dependent combo, then bind the same datasource to the second pair of combo. -------------------------------------------------------- master combo -> select region ...on master combo selection change, get all related state and city info and bind to pairs of combo. User primary and secondary should be different. ------------------------------------- primary combo1 -> select state primary combo2 -> select city ------ ...Show All
Windows Forms Grouping
Has anyone had any luck creating a control that is derived from the DataGridView that implements grouping This control is a major letdown without it. Hey billb, Great to hear about the grouping in DGV! Can I ask, what is the state of things with data binding in your control Generally, what's the way to input data into your version of the grid And also, if that's not asking too much, could you share your code with us I'm sure there is lots of interest, and I for one would love to participate in development (with all my feeble coding skills :) Cheers, gimlei ...Show All
.NET Development Xml Schema definition for element with different content
Hello! I would like to define a schema for an element that has different content in various cases. In the first case the <node> element can have 1 attribute and 2 subnodes. < root > < node ID =" 123 "> < subnode1 ></ subnode1 > < subnode2 ></ subnode2 > </ node > </ root > In the second case the <node> element can have 2 attributes, where the "deleted" attribute must have the value 1. In this case no subdnodes are allowed. < root > < node ID ="123" deleted ="1"/> </ root > How can I define a schema that says that the <node> element can have either the ...Show All
Visual Studio Issue: How can I handle TFS operations in MPF for non-member nodes (property VSHPROPID_IsNonMemberItem)?
Hi there, Does anybody know how can I handle TFS operations in MPF I mean ‘Check Out for Edit’, ‘Check In...’ and so on I have the custom implementation of ‘Show All Files’ feature. And for that feature I’m handling file anf folder nodes property VSHPROPID_IsNonMemberItem. I have a boolean property for that – IsNonMemberItem. To be more clear – that is my implementation: // overridden to provide support for VSHPROPID_IsNonMemberItem public override object GetProperty( int propId) { object result; switch (( __VSHPROPID )propId) { case __VSHPROPID .VSHPROPID_IsNonMemberItem: result = IsNonMemberItem; break ; default ...Show All
