Hi all,
I have designed my DB using the ORM in VS 2008.
What is the best way to export this to an SQL server so it will create the tables and relations on SQL Server?
Thanks,
JD
I moved an ASP.NET application from a XP to a new server and now I have this exception:
'System.Security.Permissions.SecurityPermission,
mscorlib, Version=2.0.0.0,
Culture=neutral,
On this line code:
System.Threading.Thread.CurrentThread.CurrentCulture
= new System.Globalization.CultureInfo("it-IT");
My server is so configurated:
Windows XP 2003 Sever
SharePoint
MS VisualStudio2008 Team System Workgroup Server
I tried to change security setting, machine.config.
Someone can help me explain me where and how to change what?
Thanks a lot.
Hey All,
assuming I'm running a small shop (3 devs) and using a Windows 7 machine as a centralised Git and IIS server what is the easiest way to get CI up and running?
This must be locally hosted CI (no github, no remote servers).
I'm doing C# .Net development with VisualStudio2008.
Any help on getting this running with the minimum of effort and the nicest possible UI would be extremely helpful.
Thanks!
Hi,
from front end application i am sending the value as 0.15 to data base (stored procedure) but it storing as 0 value . why ? please guide. I am usingf c# + asp.Net sqlserver 2008
Hi,
I have a database (SQL server express 2008) which has a column that is defined as text. When we try to store some text which is in chinese, it is not saved. I read that the field should be ntext. I will now have to a conversion to my table to create the column as ntext.
Would I have to do anything with the collation of the database which is set to Latin?
JD
Tue, 23 Sep 2008 05:44:40 -0700
i want to create multiple instances of zend_auth class
as i have two modules
Admin
Front
wats happening is when i login into admin it automatically get logins into
front or vice-versa.
so wat i want is the i can work on both modules separately after
simultaneous authentication.
Hi guys,
I know SQL Server 2008 has exposed some features to PowerShell as snapins. Now I want to know whether I can use PowerShell with SQL Server 2005? I guess the answer is NO, right? Thanks.
can I run C# built-in unit test in build machine which doesn't have VisualStudio installed?
We are thinking add unit test to our VisualStudio2008 C# project. Our build machine doesn't have VS installed and we want to integrate the new unit test with our auto-build system. Is MSTest the executable to launch the Team Test unit test?
I am executing the following SQL statement on an indexed SQL Server 2008 R2 database.
SELECT * FROM mydatabase WHERE (CONTAINS(ColumnA,'"The Apple is red"'))
The problem is that it returns too many entries. It also returns entries where 'ColumnA' contains only one of the words ('Apple' or 'is' or 'red'...) and not only the entries which contains the exact phrase.
According to MSDN this should be the way to search for a phrase.
Thanks
cpt.oneeye
Is there any kind of documentation generator for C#? Like something that would put the xml-ish documentation right above the method/class declarations? Is there a tool or is it tucked away somewhere in VS 2008?
Hello,
does anyone know something about the future of Microsoft Enterprise Library? The last version was released in october 2008; will it be in use anymore? or should I watch for another equivalent library?
Thanks
I know mysql, and I'd like to learn sqlserver.
I'm currently stuck on the basics of basics:
How to install and configure sql server
How to connect to it
I installed Sql Server through Web Platform Installer, and have VisualStudio2008 installed. Still, I can't understand how to connect to my server:
I see that the SQL service itself (SQLEXPRESS) is running in both in services.msc and Sql Server Configuration Manager
I try to connect to it via the Management Studio, but I don't understand what to do.
Where do I begin?
I set up subversion on my Windows 2008 server and it works fine locally, but when on a remote machine, I would like to be able to access my repository by using the URL of a website hosted on my server. Any idea how I can set that up?
to create new a new databse file start sql server management studio express on db server and create it!
i would like to create a database using c# in my web application visualstudio 08
is it possible?
as connection string has to have a name of database to connect, but i want to create one.
I am running a windows 2008 server and trying to manage its power such that the system drive should stop if not used for 10 min. My all of other power settings work except this one (same behaviour on my Win 7 workstation).
Is it something blocked by the OS or I am doing some mistake?
Hello,
is there a way to export AD password in a file and then Import it to another AD from that file, it is not different to have hash password, just I want to know whether possible to import and export user and passwords from one AD to another AD using C#.net
Thank you
my AD is 2000 advance server and my new AD will be 2003 or 2008
Hi,
I just noticed that if I have an identity column in a table, when I insert new rows SQL Server 2008 is automatically filling up the sequence if there are discontinuity. I mean, if in my identity column I have 1,2,5,6 if I insert other two rows in the table the system puts automatically 3,7 in the identity column.
Do you know how to control this behavior?
THANKS
I'm used to VisualStudio, so in an ideal world I would like something that meets the following criteria:
Lightweight
CSS auto-complete
HTML auto-complete
CSS auto-formatting
HTML auto-formatting
Syntax highlighting
Notepad2 has syntax highlighting, but no auto-complete and no auto-formatting.
Any thoughts? Please don't answer with "VisualStudio"! I'm after something very lightweight (if it exists).
Hi.
I'm using TFS 2008 and I would like to build some solutions in debug mode and some in release.
In my script, the section responsible to the 'build flavor' is global to the entire script and not for specific solutions...
There must be some way of accomplishing that... Can someone help me out please?
Thanks!
I'm using VisualAssistX for some refactoring tasks in VC++2008.
When I autorename a class, I want the filename to also be updated automatically. Any addon that does that?
(Yes, I do only put one class per cpp/h pair)
I have an asp.net web application that uses an unmanaged 32 bit dll that I have successfully running on my development machine, but when I use web deploy to move the code to our test server, I start seeing BadImageFormat exceptions.
I set the target in visual web developer to x86 and both machines are running 64 bit os's (windows 7 and windows server 2008 r2). I'm not sure what other differences there could be causing the problem. Thanks for any help you can provide.
We have an application written in VB.NET 2003 which has built in Crystal reports. When we install the application on Windows 2008 server
we get the following error while trying to open crystal report in excel format
Error is : Error in File :"....rpt" Error detected by export DLL.
The report opens up fine in PDF on server
Opeing report in Excel works fine on my local(development) machine...But this error is thrown on server...
Kindly help me resolve this issue and how to fix it?..
In VisualStudio2008, develop legacy windows form (not wpf), I wrote customized resource manager which fetched data from sql server rather than assembly. In windows form, there is property related to language setting. Once I change language, I want to form being updated automatically.
Is there any elegant way to hook up my resource manager?
Is it wise to have include guards around template classes?
Aren't template classes supposed to be reparsed each time you reference them with a different implementation?
N.B In Visual C++ 2008 I get no errors combining the two...