SCRunner's Q&A profile
SQL Server Error - Installing SQL Server 2005 Client Tools
Hello I am trying to install sql server 2005 client tools and I get the following error: Error code 2356 : Could not locate cabinet in stream : sql.cab How can I go about this Thanks Hi, is my first time here so... I'm from Spain and my english level... well, i'm working very hard on it. The results, may be on other life. I'm trying to install a selfmade *.msi package that returns me the same error code. The package basically has been made to config an IIS directory and install a SQL BBDD. The SQL Script included in the package has been run and it works fine, no SQL errors given. ...but... Installing the *.msi returns (in a LOG file created running &qu ...Show All
SQL Server import ascii file with ssis and script
Hi, i've question about how to import an ascii-file in a sql 2005 table. I want to import this file also with an unique key. There i first have to get the last key form the table and then raise this key. Next step is to use this key during the import. How do i have to do this in ssis Thanks in advance Olaf Phil, Thanks for your reply. I think i've solved the problem. I've used an 'Union All' where i connected the 'Flate File source editor' and 'Script Component'. After the 'Union' comes a 'Data conversion' and then the 'OLE DB Destination'. I like to hear from you if this the right way. Now i get an error message in the 'Execution Results': [DTS.Pipeline] Error: component "Union All" (14793) fai ...Show All
Game Technologies: DirectX, XNA, XACT, etc. 3D Audio
Has anyone had any luck with the implementing 3D audio dsp calculations using the emitter and listener Previous posts indicator there were problems back in October, but I don't know about now. Also on audio, are the friendly names for the SetVariable on the cue class documented anywhere Justin I was planning to create an audio-only game for my first project... but 3D audio was officially cut from XNAv1: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=884617&SiteID=1 ...Show All
SQL Server I have the same error from SQL Mgmt. Studio - Pablo please help
I have the same error from SQL Mgmt. Studio - Pablo please help. I did not see any resolution to this issue. Thanks, Rupak What do yo mean by "the same" HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All
SQL Server Variables in XMLA
Hi, I have the following XMLA <Batch xmlns=" http://schemas.microsoft.com/analysisservices/2003/engine "> <Process xmlns:xsd=" http://www.w3.org/2001/XMLSchema " xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance "> <Object> <DatabaseID>FSP Metrics</DatabaseID> <CubeID>File Monitor Statistics</CubeID> <MeasureGroupID>File Monitor Statistics</MeasureGroupID> <PartitionID>File Monitor Statistics</PartitionID> </Object> <Type>ProcessAdd</Type> <WriteBackTableCreation>UseExisting</WriteBackTableCreation> </Process> <Bindings> <Binding> <DatabaseID>FSP Met ...Show All
SQL Server Receive all messages on queue
Hi i am trying to create a batch process then commit for all messages on the queue. The problem i am having is when i run my query (As below) I only receive the first message and the corresponding end dialog for the message although i have 2000 records sitting in the queue. It is my understanding that receive without any criteria i.e top(1) or where clause should select everything of the queue. I tried receive top(100) expecting 100 records but still only got 2 back. any help appreciated. WAITFOR ( RECEIVE queuing_order , conversation_handle , message_type_name , message_body FROM [RMIS_COMMS_Queue] INTO @tableMessages ), TIMEOUT 2000 ; Each RECEIVE returns ...Show All
Visual Studio Team System Adding custom attributes to Team Project
Hi all, is there a way i can add custom attributes at the team project level like if i wana add property called Category just to categorize team projects in our organization btw i'v seen process templates etc.. i dont think theres something like this..any idea regards faraz Faraz: Yes you can add attributes and fields to the process templates. first , you have to download the process template that you want to change. Open visual studio 2005 and navigate to process template manager and then down load the template you want to change to your machine. then go in to the MSF for Agile Software Development - v4.0 (FMG Custom)\WorkItem Tracking\TypeDefinitions then edit the task.xml file and add the fields for e ...Show All
Visual Basic FTP multiple files on one request?
hi all im looking for a way to upload a maximum of 4 files at once. 1 file will be a .html file, but the other 3 could be anything from pdf's to jpeg's. The code I have only images, but not txts. This is the code I'm using at the moment, for 1 file: Dim ftpURI As String = "ftp://" + txtFtpUrl.Text Dim FileToFtp As String = Server.MapPath( "uploadedfiles\" + txtFtpFile.Text) Dim TitleOnServ As String = ftpURI + txtFtpFile.Text client.Credentials = New NetworkCredential(txtUN.Text, txtPW.Text) client.UploadFile(FileToFtp, TitleOnServ) Hi Teos, Try using the BytesRoad Netsuite library. This is an advanced opensource ftp library. http://byte ...Show All
Smart Device Development how to start develop C#.NET application on Windows Mobile 5
i have install VS.NET and WM 5.0 SDK on my pc but i don't know how to config it to develop and run my application on my emulator Again, there's nothing really to configure. You create a project, pick emulator you want and hit F5. That's it. If deployment works you should use debugger to figure out why “Hello” does not appear. If deployment does not work, please post deployment log. ...Show All
.NET Development HTTPS Connection fails with "The operation is not allowed" Exception
Hi, I am using .NET 2.0.50727 and trying to connect to a secure site : https://www.verisign.com - I get an exception : Unable to connect to the remote server. ---> System.IO.IOException: The operation is not allowed on non-connected sockets. The code snippet is: IWebProxy iwp20 = WebRequest.DefaultWebProxy; Console.WriteLine(iwp20.GetProxy(new Uri(URI)).ToString()); HttpWebRequest myHttpWebRequest=(HttpWebRequest)WebRequest.Create(URI); HttpWebResponse myHttpWebResponse=(HttpWebResponse)myHttpWebRequest.GetResponse(); Stream streamResponse=myHttpWebResponse.GetResponseStream(); However, the same code works for http://www.verisign.com ...Show All
Windows Live Developer Forums i need some help on nick changing
the problem is i can't change my display name in windows live messenger, and my current display name is my email address, it just remains the same display name no matter how i change it. just recently, i tried to log in my account using windows messenger. i change my display name there and it did work. however, when i back to windows live messenger, i encounter the same old problem again. by the way i can neither change the personal message in windows live messenger. anyone know why on earth does this happen Exactly the same for me too... in order to get them back I had to delete them from my contact list and re-add them. I don't get the problem using another account and uninstalling/reinstalling has ...Show All
Windows Forms Allowing User to move a panel
This is the deal: I have a panel with labels, textboxes, buttons, etc... on it and I want to allow the user to be able to move it around on the screen. How do I do this By handling the MouseDown, MouseMove, and MouseUp events for the panel. On a MouseDown you set a flag that the panel should move, on the MouseMove you move it to the location of the pointer on the form, offset by the MouseDown location within the panel, and then clear the flag on MouseUp. Something like the following will work: Dim MovePanel As Boolean = False Dim MouseOffset As New Point(0, 0) Private Sub Panel1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Panel1.MouseDown ...Show All
Smart Device Development How to create a Service appliaction for windows mobile 5.0 smartphone
I have a application in for Windows Mobile 5.0 pocket PC. Now I have to Make it new one for Smart Phone From Client I have this feedback The essential difference between Pocket PC and SmartPhone is that instead of having the application implemented as a DLL (as with Pocket PC) it must be implemented as a service in SmartPhone . In the Pocket PC the application was implemented as a Today screen plug-in DLL; under that Operating System a Today screen plug-in is always available and running. In SmartPhone, the Home screen plug-ins work differently than the Today screen plug-ins; they're not always available in memory. If the user chooses to change the layout of his home screen by downloading a different theme ...Show All
Visual C++ Visual Studio 2005 Service Pack 1 Beta - error C2244
Hello, I installed SP1 Beta asap, because I am encountering the "Updating Intellisense ... 100% CPU load" problem. Intellisense problem seems to be resolved, but now I can't compile QT 4.1.4 here is compiler message: -----------------------------------------start c:\qt\4.1.4\include\qtcore\../../src/corelib/tools/qhash.h(805) : error C2244: 'QMultiHash<Key,T>::replace' : unable to match function definition to an existing declaration c:\qt\4.1.4\include\qtcore\../../src/corelib/tools/qhash.h(790) : see declaration of 'QMultiHash<Key,T>::replace' definition 'QHash<Key,T>::iterator QMultiHash<Key,T>::replace(const Key &,const T &)' existing declarations ...Show All
Visual C# Why? WSE910: An error happened during the processing of a response message.
Hi, I am using Saml token for web service authentication. I have a problem it runs fine when server and client is my own machine but it i get error when server and client are seprate machines. --------------------------- --------------------------- Microsoft.Web.Services3.ResponseProcessingException: WSE910: An error happened during the processing of a response message, and you can find the error in the inner exception. You can also find the response message in the Response property. ---> System.InvalidOperationException: Security requirements are not satisfied because the security header is not present in the incoming message. at Microsoft.Web.Services3.Security.SecureConversationClientReceiveSecurityFilter.ValidateMessageSec ...Show All
