fly_eye's Q&A profile
SQL Server SQL Server Setup unexpectedly failed (again)
I’m running WinXP SP2 with 1GB RAM, dotNET 2.0. and a previous install of SQL Server 2000. I have tried to install SQL Server 2005 Express and it fails early in the installation: "SQL Server Setup unexpectedly failed. For more information, review the Setup summary log file...". The log file is: (!) Microsoft SQL Server 2005 9.00.1399.06 ============================== OS Version : Microsoft Windows XP Professional Service Pack 2 (B ...Show All
Visual C++ Bufferoverflowu.lib for amd64 is missing in whidbey beta 2
Lets say you compile some code with the latest PSDK for AMD64 cpu. Then you compile your files into a library and expect users to use that library. However because of the security code there is a dependency for using bufferoverflowu.lib on the PSDK since it uses old CRT code. If you use #pragma comment(lib, "bufferoverflowu.lib") then the file must exist to be able to succesfully link. This is a problem if you compile your code with the PSDK an ...Show All
SQL Server Creating an Offline or Local Cube
Hi, I want to create an offline cube (Local cube) and insert data into it from an existing cube in SQL Server Analysis Services 2005. Can anyone please help me on this issue. Thanks and Regards, Gautham. i have never understood.. how do ue xecute an mdx query.. like we use sqlplus for an oracle sql statement.. iwas'nt sure how to ecute an mdx..the more detail the better.. i was'nt sure how to execute an mdx query ...Show All
SQL Server fn_listextendedproperty sql 2005
Hi books online for 2005 states that the following code can list extended properties for all tables in a schema, however I get nothing returned when I execute it. SELECT objtype, objname, name, value FROM fn_listextendedproperty (NULL, 'schema', 'dbo', 'table', default, NULL, NULL); Anybody have any ideas on how to get this going Thanks, Ned Thanks very much Julian, I ended up writing a cursor, but this is more ...Show All
SQL Server SQL Express Advanced commandline install
I'm trying to install SQL Express Advanced Services from the commandline, but cannot get Management tools to install. Does anyone know the correct commandline to get this to work thanks, Daren Can you supply us with your command line so we can help troubleshoot My guess is that you are missing it from the ADDLOCAL tag. Thanks, Sam Lester (MSFT) ...Show All
Software Development for Windows Vista Registry Access in Managed Form Application
Hi, I'm developing a C# .Net 2.0 application that requires read/write access to the registry. I'm using the following code: using Microsoft.Win32; ... regkey = Registry.CurrentUser.OpenSubKey(@"SOFTWARE", true); regkey = regkey.CreateSubKey("MyCompany"); On Vista the new permissions lock down, I get the registry access denied exception. How do I elevate the permissions level so that the user at least is pro ...Show All
Visual Studio Team System TestRun Deployment Issue - local assembly is not trusted
Hi there, I have a Unit Test for a web page (based upon the details at http://blogs.msdn.com/vstsqualitytools/archive/2005/08/02/446322.aspx . When I try to run the test I get the message: Test Run deployment issue: The location of the file or directory 'c:\...\ICSharpCode.SharpZipLib.dll' is not trusted. I have found other references to this message but they were all for assemblies on UNC shares or other remote locations. This asembly ...Show All
Windows Forms How to add a user control inside a treeview control as a node
I am having one user control (containing two combobox and one button) , I want to add this control as a node in a treeview control , to be more precise now I want my user control acting a node in the treeview control instead of treeno ...Show All
SQL Server Concatenate field based on unique id.
I have a table like this Id comment -- ------- 1 abcd 1 efgh 1 cc 2 aa1223 3 myComment 3 myComm123444444 I want to a SQL statement that returns unique Ids with their comments concatenated with comma. 1 abcd,efgh,cc 2 aa1223 3 myComment,myComm123444444 Can anyone help me with this. thanks. You will most likely have to use a temp table or table variable and a cursor. This wil ...Show All
SQL Server compatability level
i restored couple of databases from 2000 onto 2005. Should i change the compatability level of these databases to 90 Would it help/harm Check out this link ...Show All
Visual Studio Team System TFS Licensing question
Hope someone can help answer this question. First, the facts: Our current development team in my company consists of 3 full-time in-house developers and anywhere between 4 and 7 contract programmers from a local consulting firm, depending on the number of projects under development. Each of our 3 developers is licensed with an MSDN Subscription (myself with an MSDN Premium for Team System Architect, the other 2 have MSDN Premium for Tea ...Show All
Software Development for Windows Vista How to Create property of type Custom data collection
Please help me in resolving this issue. // Code sample. public static DependencyProperty TestProperty = System.Workflow.ComponentModel. DependencyProperty .Register( "Test" , typeof ( StreamActivity []), typeof ( MailActivity )); [ Description ( "This is the description which appears in the Property Browser" )] [ Category ( "This is the category which will be displayed in the Property Browser" )] ...Show All
Visual C# HashCode generation of local and remote object is different.
Hello Everyone I am consuming a web service which supports an asychronous callback on the completion of an event. In my client application I have subscribe to the corresponding eventhandler. I had to maintain a hashtable contains the hashcode of an input object along with a referential key before making the asynchronous operation. This is to identify the returned object in the the callback event handler. When I do a hashing of the same input ob ...Show All
Visual Studio Team System Extend FxCop to check WebService Proxy.Url string
Hi Michael, This thread is a continuation of a thread (id=327628) from the old forum. That thread was started by SunilMenon. Since I did not get any reply to my post on the old forum I am re-sending the same on this forum. I have tried to create a custom rule for the above request. Can you please go through it and check if its fine. public override ProblemCollection Check(Member PassedMember) { Method oMethod = Passe ...Show All
Visual C# global variable
Hi friends i want to create global variable that can be used anywhere in the project. what i am doing is am creating a connection to a sql server and i want to use that connection thru out my project whenever i want data from sql server. how can i do that any ideas where should declare that variable !!! Thanks Hi, Is the file that you downloaded called " Enterprise Library - August 2005 CTP.zip " This works with VS2005 Beta 2. Also T ...Show All
