Aelx's Q&A profile
SQL Server SCD question
Hi All, I am new to SSIS and have one question about SCD and its limitations. I am trying to update / insert a table based on 2 other external columns. I have done my lookups to transform and grab the necessary columns and have a final dataset ready for insertion/updates. So at this point I was hoping to use SCD to do my updates/inserts based on the criteria that I was given but the only problem is that 2 columns that are necessary to determine if the row should be updated or inserted do not exist in the target table. Is there a way around this or can someone show me another method to achieve my goal Thanks, Cheston thanks for the quick response. would it be possible to show me how to do this or point me ...Show All
Visual Studio Express Editions MFC DLL
When given a problem that involves quantum interactions, behavior among particles such as atoms etc.: (using: MS VC++) Would you create an, MFC Dll Project Would you take another path Thanks very much for any and all (no matter how minor) info. in regards to above question(s). B. John thanks so much Dennis; ill be saving a copy of your response to refer to. email is bjohnkenn at msn dot com but will try to reach you via forum at vc++ language so all get the knowledge i may be able to use banks of computers (beowolf ) there are so many choices as you know and i cant take more courses etc. i have enough under my belt and have to press on, thanks for narrowing it down in 3.), i almost thought to uninstall all and j ...Show All
SQL Server Response time of Reporting Services
Hi ! We have a web application. We have receive some feedback from our client about the response time of ReportServer. Here is the problem. Let says that for a couple of hours nobody has request any reports from ReportServer. Then someone is requesting a report. In this case the time before the ReportViewer will start to query the report will be longer than usual. It's like some kind of process is shut down and ReportServer need to start this process before processing the report. Once this report will be display the problem disapear. What i mean is that if someone is requesting another report it will be as fast as usual. But once again if for a couple of hours nobody is requesting a report, the next time someone will request a report it w ...Show All
Visual Studio Express Editions icons scrampled in toolbox
Hi, I have a strange problem lately regarding the IDE. The icons inside the Toolbox are all scrambled. Like this morning when i opened it, all the buttons are appearing as clock icons (except pointer icon is appearing normally)! It all happened a few weeks ago, and one note needs to mention is that the whole project we are doing is frequently copied and pasted from one computer to another (the whole solution directory). Does anyone know what happens Thanks Tigerwood2006, According to your problem, I recommand you that the best solution is reinstall the VB Express Edition. Luckly that it is not so huge as Visual Studio. If you cannot run your previous projects with the controls correctly, and even ...Show All
Visual Studio Visual Studio Developer News Start Page news channel URL
I recently installed Visual Studio 2005. My preferred language is C#. The Start Page initially displayed the message "The current news channel might not be valid or your Internet connection might be unavailable. To change the news channel, on the Tools menu click Options, then expand Environment and click Startup." All good stuff, but didn't help me get a valid Developer News connection. Unfortunately I tried to put in a URL from a microsoft website, overwriting the default URL. AND I didn't write down the default. So now I can't get Developer News and can't set the Start page news channel URL back to the original value. Anyone know the original value I have the same problem here, re ...Show All
.NET Development 70-320 exams material needed
Can anybody plz provide me the pdf file of mcp exam 70-320 which come with the book :- "Developing XML Web Services and Server Components with Microsoft Visual C# and the Microsoft .NET Framework". I don't think you may get it without a book. The support page for Microsoft Press books and CDs is http://www.microsoft.com/learning/support/ Best regards, Anton ...Show All
Visual C++ Warning: At least one module has an unresolved import due to a missing export function in a delay-load dependent module.
I am working on a mulitple project solution in .Net 2003 whcih contains a mixture of C++ and C# code, either DLLs or LIBs. The main dll called is a mixture of unmanaged and managed code, managed code was added due to the addition of the C# code. I have a test application that calls this dll to run tests, surprise that! If I compile the test application, which is a VB.Net application, to the same directory as where all the DLLs and LIBs are built to all works fine. However, if the test application is built to a different folder I get the following error when I run the application: Run Time error '-2147024894(80070002)' File pr assembly name Blah.dll, or one of its dependencies, was not found. I I use DependencyWalker on Blah.dll th ...Show All
Game Technologies: DirectX, XNA, XACT, etc. DrawModel Memory Problem
Hey all, i have used the code from the MSDN documentation which draws a model but i have run into a problem. private void DrawModel(Model m) { Matrix[] transforms = new Matrix[m.Bones.Count]; float aspectRatio = 640.0f / 480.0f; m.CopyAbsoluteBoneTransformsTo(transforms); Matrix projection = Matrix.CreatePerspectiveFieldOfView(MathHelper.ToRadians(45.0f), aspectRatio, 1.0f, 10000.0f); Matrix view = Matrix.CreateLookAt(new Vector3(100.0f, 150.0f, -150.0f), Vector3.Zero, Vector3.Up); foreach (ModelMesh mesh in m.Meshes) { foreach (BasicEffect effect in mesh.Effects) { effect.EnableDefaultLighting(); effect.View = view; effect.Projection = projection; ...Show All
SQL Server How to pass values to multi value parameter
Hi, I am trying to pass a url which can run my multi value parameter report. I have done similar thing for single value parameter and it worked but I don't know how should I pass more than 1 value to my parameter. Please help!!! -Rohit Basically you just go for http://reportserver/report param1¶m2&etc param1 being the actual value you want to pass. you can use httputility.URLEncode function to solve any URL Splitting isseus you may have. ...Show All
Visual Studio 2008 (Pre-release) How to determine message size that goes over wire?
Hi , I need to determine System.ServiceModel.Channels. Message size that goes over wire. I have intercepted message in public void AfterReceiveReply( ref System.ServiceModel.Channels. Message reply, object correlationState) method of IClientMessageInspector interface. In quick watch reply message was formatted and when I saved it in txt file, file size was 105K. Then, I tried to serialize it in file in AfterReceiveReply method with: System.IO. Stream str = new System.IO. FileStream ( @"c:\file" , System.IO. FileMode .Create); System.ServiceModel.Channels. MessageBuffer mb = reply.CreateBufferedCopy(maxBufferSize); mb.WriteMessage(str); and file size was 70K. Is any of these two va ...Show All
SQL Server Seeking help demonstrating a simple drill down in Report Builder using Adventureworks
Folks, I'm interested in demonstrating how ReportBuilder can let a user drill down through relationships, as it described here, where it suggests that a report of employees could have them click on department to see other employees in that department: http://msdn2.microsoft.com/en-us/library/aa337330.aspx Unfortunately, it only says that "the person who created the data souce" made the fields "interactive". It doesn't clarify how they are to do that. I realize there's an option to create a report and save it as a clickthrough from another, as described here: http://msdn2.microsoft.com/en-us/library/ms365324.aspx But I was hoping that instead something more straightforward may be possible in the report model design proce ...Show All
Visual Studio Team System Incorrect code coverage results
Hi, I have a test class written that runs a suite of unit tests against a utility class in my assembly which is installed to GAC on the local machine. Most of the code is ran from a sharepoint web application but some can be ran from backend services or console apps. In the test run config file I have the settings configured to point to the strong name key file. The test class mixes running in "local" mode and asp.net mode. For exampe one of the unit tests tests the code running with no asp.net cache and another tests with the asp.net cache. [ TestMethod ()] public void TestWithNoCache() { // Ensure HttpContext is null Assert .IsNull( HttpContext .Current, "HttpContext.Current should be null" ) ; [ T ...Show All
Game Technologies: DirectX, XNA, XACT, etc. get screen resolution & FullScreen
How do I get screen resolution of the computer Because my program will be shared between many computers, I want the program to find the resolution of the computer on wich it is running. By example, on my computer at home, the program will return the value 1024 and the value 768 in order to make 1024 X 768. On my laptop, I will get 1920 and 1200. I want to get the width and the height separately, in two variables. With those values, I will be able to set automatically on each computer the window size as I want it. To resume, I am looking for something like this: width = computer.ScreenResolution.width; height = computer.ScreenResolution.height; Also... If I ever decide to start the game in FullScreen (Make the wind ...Show All
SQL Server Data flow task multiple destinations
Hi, The further i get with doing my current SSIS package the more i am starting to wonder about best practices and performance. My current package loops through CSV files in a specified location and extracts events from these files. Each file contains multiple events which are a mixture of different types. Depending on the event there are a different number of comma seperated values. In the package i firstly set each event to one column seperated by a comma delimeter. I then create an array for the event which is split by the delimeter. In a script i weed out all elements of the array that are common to all events and set the remaining events to another array. After some processing i come to my conditional split transformation which splits ...Show All
Windows Forms Console Output from a Windows Form
I have a windows form program which also includes a command line interface to a few of its features. When command line options are pased to the program the GUI is not displayed, and the command line code is properly excuted. However none of the output to the console appears. I was able to get the console output to be displayed by having Visual Studio 2005 compile my program as a console app instead of a windows app, but this causes a console window to be opened when you run just the GUI portion of the program. Is there anyway I can get the console output to appear without having this console window opened with my program when running the GUI part To add on, if you've played with the raw compile option ...Show All
