Nickeay's Q&A profile
SQL Server SSIS in production
We have developed a project with many SSIS packages. Now we are in a stage where we are deploying this into production. The operaitons team has asked us what are the things they need to known and do to make sure that the production system of SSIS keeps running. Can you help me in comming up with a detailed list which I can give to the operations/admin folks so that they can ensure that this project keeps running I would appriciate any help in this matter. regards, Abhishek. Phil, Thanks a ton. Can you explain little bit what do you mean by > 1. will they need to update any control tables. what are control tables. > 2. expand a table if it starts to exceed storage limit ...Show All
Visual C++ File upload and download
Hi All, I want to upload and download file in HTTP. plz help me how to do this one. -Amjath Hello Re: File upload and download Such general questions are outside the scope of this forum - for the scope of the VC General forum please look at: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=19445&SiteID=1 For such issues please use an appropriate newsgroup, potentially one at http://msdn.microsoft.com/newsgroups . Many technologies/libraries that MS supplies support such functionality. OTP Thanks Damien ...Show All
SQL Server UPDATE TABLE using ROW_NUMBER() OVER...
Hi Champs, I am trying to either UPDATE or add a new column with ROWNUMBER() OVER an column on a table table: ID------Col2----Col3--- 1-------12---------1 1-------34---------2 2-------44---------1 2-------75---------2 2-------77---------3 3-------23---------1 3-------33---------2 4-------44---------1 4-------22---------2 I know I can get Col3 right with an SELECT and ROWNUMBER() OVER, but how can I UPDATE the table with the result /Many thanks Hi, here is a sample: DROP TABLE SomeTable GO CREATE TABLE SOmeTable ( IDCol INT , ValueCol INT , RANKCol INT ) INSERT INTO SomeTable VALUES ( 1 , 1 ,NULL) INSERT INTO SomeTable VALUES ( 1 , 2 ,NULL) ...Show All
Windows Forms DataGridView Serial Number Generation With Combo Box Column
hi, i have a datagridview, and during the design time i have added three columns SrNo EmployeeName Location Out of this i could figure out employeename and location which is a drop and i have added the drop down collections during design time itself, and i could fetch them in datasets, but now i want to make that srno column as auto increment, helps needed Regards, Prasenna. K thanks skanda, but i dont bind the gridview to a datatable, instead i designed during design time itself, .net 2.0 has the feature to design gridview during design time itself, so huv to increment the values one by one, ...Show All
Visual C++ BUG: Potential Memory Leak generated by STL deque
BUG: Potential Memory Leak generated by STL deque. FIX: Add a little code and it will work pretty well. I submitted the problem about 4 years ago, but VC++ SP5 still has the bug. ISSUE: STL map and STL set are not ready to be exported from DLL. FIX: Modification must be made. It is VC6.0. SP6 does not fix this problem. I will give the details soon. In VS7.0, STL is totally different, and the implementation of "deque" sucks: it does not free "maps" until the deque object is destructed. In this case, if you use a deque as a FIFO, the memory usage will keep increasing. I will check VS2005. ...Show All
Visual Studio how to stop or suspend windows service through program in Vb.net.
Please give me the detailed description about Windows services. thanks & regards P.veerakondalu Hello This forum is for handing issues around the new class designer that ships with VS 2005. You should post your questions on Windows Services to one of the programming newsgroups. http://msdn.microsoft.com/newsgroups/ However you may want to take a look at the System.ServiceProcess Namespace http://msdn2.microsoft.com/en-us/library/system.serviceprocess.aspx Thanks Brian [MSFT] Microsoft Developer Support This posting is provided "AS IS" with no warranties, and confers no rights. ...Show All
Visual Studio 2008 (Pre-release) Frame element z-order problem when displaying html
Hello: I am attempting to display some HTML content inside of a WPF application using a Frame element. This works fine for displaying the web content, but it appears to effect the z-order behavior of the Frame, causing it to be drawn above all other elements. The following XAML will show the effect: < xml version="1.0" encoding="utf-8" > <Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" > <Frame Grid.ZIndex="-100" Background="Red" Source="http://www.google.com"/> <Button Grid.ZIndex="100" Content="Hello"/> </Grid> The button should be dr ...Show All
Windows Forms WebBrowser Display dynamic Xml
Hello guys , I have some problem about xml in my web browser control. I have ; 1)data modules (xml files and their content are encrypted with xml encryption) , 2) xml schemas for this data modules to validate 3)Xsl files(to stylesheet these xml files) My problem is , I will not use navigate method of web browser control.I want to pass the decrypted xml content to web browser control.Since , the decrypted xml content will be the string type and I will pass it to the web browser control to be processed.However , web browser control does not see the xsd and also xsl document. What could you suggest to me My current solution is ; Since my xml files are encrypted , In my application , I will decrypt the xml files to temp xml ...Show All
Windows Forms Need shapes or transparent images, can't use either
My problem is as follows: I want the user to be able to select a pattern among a grid of 20 patterns: Click here When the user clicks on one of them, a square should draw around it. I used to program with Visual Basic 5. In Visual Basic, I'd simply use a shape control to draw that square, but Visual C# has no shape control. So I tried using a GIF with a transparent background, it didn't work. The picturebox control just parses the form's background color, making the transparency useless. I tried using setting the style so that it supports transparent color, but this feature isn't perfect. Controls with a transparent background just parse the form's background and hide the controls that are under it. Here's a sample of what happen: Click he ...Show All
SQL Server restore transaction log
dear all, I want to restore transaction log to other server using transact-SQL. can we restore serveral transaction log files at the same time anybody have experience on this one. thanks Ok, now I understand what you are trying to do. Basically you can't do what you trying. Once you've restored a log "with recovery" you cannot restore another log at a later point. You would need to take another full backup. What you should probably do is setup transaction log shipping but select the option to leave the database in a read only state.This allows you to read the database between log restores, however, if you are using the database when the log restore is scheduled ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Move a point by sin
I'm wanting to move a point up and down smoothly. One of my friends suggested that I move it using sin but I haven't a clue how to do this. My maths is a little rusty. Can anyone help Hello, I had a look to your explaination and I don't understand it (maybe because I'm not englsih native speaker), can't we just calculate this equation in his case : y = 15 * sinx + 20. Maybe it is just the same thing you done^^ Thx ...Show All
Visual J# Vj# control not working in IE 6.0.2900.2180.xpsp_sp2_gdr.050301-1519
we are hosting vj# control in IE which is not working in particular version of IE 6.0.2900.2180.xpsp_sp2_gdr.050301-1519 which seems to be the latest and greatest version of IE which we upgraded by isntalling it through the windows updates (both high priority and optional updates ). please advise how to make it work in the latest version of IE. pleas advise, Here is the sample code. homepage.htm <HTML> <BODY> <IFRAME name="leftframe" src=" http://www.google.com " APPLICATION="yes"></IFRAME> <IFRAME name="webwindowsframe" src="Page1.htm" APPLICATION="yes"></IFRAME> </BODY> </HTML> page1.htm <HTML> <BODY&g ...Show All
SQL Server An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue
Hi Guys, Can anyone help me with this error An OLE DB error has occurred. Error code: 0x80004005. An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Protocol error in TDS stream". An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Protocol error in TDS stream". An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Protocol error in TDS stream". An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Communication link failure". An OLE DB record is available. Source ...Show All
Visual Studio 2008 (Pre-release) TextRange
Hi I am having trouble saving Images from a flowdocument into an RTF document. I use the TextRange object to get my data which I build up using paragraphs and inlines. I use Avalon Image objects to add Image Inlines to my document. Then I just use the TextRange.Save method to save my data, using the RTF format. The problem is that only my text gets saved (including its formatting), but all my images are gone. Is is possible to save images along with the text Thanks! bbg I use this approach: Image image = new Image (); image.Stretch = Stretch .None; image.Source = new BitmapImage ( new Uri (fileName)); new InlineUIContainer (image, this .richTextBox1.CaretPosition.GetInsertionPosi ...Show All
Windows Forms programmatically change datagridview pointer column size
The pointer column in a datagridview is manually sizable with the mouse. How can I set the pointer column width programmatically Thanks If I understand correctly, you want to programmatically set the width of the datagridview column correct if so.... this.theDataGridView.Columns[ indexOrColumnName ].Width = newWidthValueHere; ...Show All
