We're migrating a classic ASP application which is using a MySQL database to ASP.NET. All MySQL tables were/are created with "TYPE=InnoDB CHARACTER SET latin1".
The classic ASP application has no problem whatsoever with storing special characters like the Euro sign (€) or ‰ into the MySQL database. But I can't get ASP.NET to do the same. Things like the Euro sign get dropped and replaced by a ? I've tried experimenting with settings in my web.config file, like:
i had the sql 2008 enterprise and i want to go back to sql server 2005 because in 2008 i created new database but when i did some changes in the table , it gave me an eror that i cant save thins and i need to creat new one if some one know what i'm talking aboutif not i need the sql server installation tutorial i tried by myself but probebly i did it wrong and now i cant connect well to the sql
New to web services, and while developing my first project, after some hours of googling, I can not find how can I change the charset used in the web service XML ouptut result. Using Visual Web Developer 2008 Express, I developed the web service, and also a VB program for communicating with the service. This web service will simply send a string of alfanumeric characters. Because of the real final use of this web service, I want to be able that the web service could send the XML encapsulated response in plain characters, without the HTML conversion. That is, I need to receive "&" instead of "&" and "<" instead of "<" Is this possible, and how can I do it?
While exporting data from DataTable to CSV file 'characters' from Poland, France, Germany and Russia are being replaced with funny characters. To get rid of the problem, ISO-8859-1, IS0-8859-2 has been used with no resolution.
We currently have a DB in SQL 2005 and would like to convert it to SQL 2008 taking advantage of all the new features (if there are any) in SQL 2008. Would like to know the best approach or if there are any tools which can convert all the tables/views/storeprocs etc to 2008 specifications...
STUDENT PARENT student_id (PK) parent_id (PK) student_parent (FK) parent_status (the value is either ACTIVE OR INACTIVE)
- parent_id is refer by STUDENT table as a foreign key
- now i want to inactive the status for parent
- i want my system pop out a message something like "The parent you want to inactive is refer by a student, inactive is not allow"
- is it any constraint in SQL Server 2005 to help me check whether parent it is refer by student table? The concept i want to use is something like delete constraint in SQL Server 2005 mean it is not allow to delete a person who is refer by a student in STUDENT table.
I have a requirement where in i need to do DATA MASKING, of the data in all the tables in my project.Please suggest me the ways to do this, as the masking procedure should not make any changes to the RULE's.For ex:- EMPLOYEE table , have fields like {empl_id, name, addrs, ph_no, email, dept_id} all the contents of these columns should be shuffled in such a way that all the referential intergrity remains same. Like the changes to the data should not affect the DEPARTMENT table , as the EMPLOYEE table is having a FOREIGN KEY relation with the DEPARTMENT.
I am working on a project where in one SQL query i am using joins to fetch data from diffrent tables. The execution time of the query is 20 seconds for 80 rows on my local server. How can i optimize this.
i am tring to connect to my db in sql server 2005 :) and have some problem with it.the error that i get is : Keyword not supported: 'datasource'.the line that i have an error is :
Im using MS SQL 2005 as my database for asp.net application.. now i want to asign Static ip address to ms sql server 2005 to access all over the world... so would u plz tell me step by step to configure static ip to ms sql server 2005..
My asp.net 2.0 is deployed in web hosting.. now here in my server i have configure a static ip.. so how to access my ms sql database all over the world.. i need to know is that i need to write directly connection string in a webconfig of my static ip.. or i need to create a instance of my static ip to ms sql server 2005 to access the database..
I have created sample database in my SQL server 2005 database.Now i want that database should be password protect when i click on SQL SERVER DATABASE FILE. how to set password when anyone click on my sample database file it will show enter password field to enter into the database.
I just need to know how to select in c# select from my sql server database for the purpose of seeing if data already exists.. do not need to display the data (i know how to select the data and display it in a data grid) but I am checking to see if dates are already in the database before performing an insert since there can not be duplicate dates... it is late but I only can figure out how to use the data as it applies to viewing or if bound to a control. Also I am not using the aspx... in tags... my c# is seperate... do I have to use a stored procedure just to see if the row exists???