Click here to Skip to main content
15,887,027 members
Home / Discussions / Database
   

Database

 
GeneralRe: Multiple Choice Pin
Leslie Sanford19-Sep-05 6:21
Leslie Sanford19-Sep-05 6:21 
AnswerRe: Multiple Choice Pin
Edbert P18-Sep-05 20:31
Edbert P18-Sep-05 20:31 
QuestionSQL union Pin
phokojoe18-Sep-05 5:31
phokojoe18-Sep-05 5:31 
AnswerRe: SQL union Pin
Colin Angus Mackay18-Sep-05 12:00
Colin Angus Mackay18-Sep-05 12:00 
Questionmysql conncetion for absolute beginner Pin
Sasuko17-Sep-05 23:46
Sasuko17-Sep-05 23:46 
QuestionDatabase Error at Enterprise Manager Pin
YoungLearner17-Sep-05 22:32
YoungLearner17-Sep-05 22:32 
QuestionI NEED A QUERY SAMPLE IF POSSIBLE Pin
MAGICIANMERLIN17-Sep-05 11:10
MAGICIANMERLIN17-Sep-05 11:10 
AnswerRe: I NEED A QUERY SAMPLE IF POSSIBLE Pin
Colin Angus Mackay17-Sep-05 12:41
Colin Angus Mackay17-Sep-05 12:41 
MAGICIANMERLIN wrote:
I need if is possible a query like this all of in database table which data is null change it with "NO INPUT" string.

That's not an easy query. Why not try your first option?

MAGICIANMERLIN wrote:
write in where criteria all field

With a little lateral thinking this can be achieved in less than 5 minutes.

SELECT 'UPDATE ['+TABLE_SCHEMA+'].['+TABLE_NAME+'] SET ['+COLUMN_NAME+
']=''NO INPUT'' WHERE ['+COLUMN_NAME+'] IS NULL;'
FROM INFORMATION_SCHEMA.COLUMNS
WHERE IS_NULLABLE='YES' AND DATA_TYPE IN('char','nchar','varchar','nvarchar')


Basically, this is a query that will generate a SQL script. Run it in Query Analyser and remember to set the Results in Text (Ctrl+T) then run it. You can then copy the contents of the results pane to use as the query that will update your data.

Does this help?


My: Blog | Photos

"Man who stand on hill with mouth open will wait long time for roast duck to drop in." -- Confucious


GeneralRe: I NEED A QUERY SAMPLE IF POSSIBLE Pin
MAGICIANMERLIN18-Sep-05 2:07
MAGICIANMERLIN18-Sep-05 2:07 
QuestionMANIPULATING VIEWS Pin
Wisdom200417-Sep-05 3:53
Wisdom200417-Sep-05 3:53 
QuestionLike Query & Null Values Pin
rich_wenger16-Sep-05 12:08
rich_wenger16-Sep-05 12:08 
AnswerRe: Like Query & Null Values Pin
turbochimp16-Sep-05 17:39
turbochimp16-Sep-05 17:39 
GeneralRe: Like Query & Null Values Pin
rich_wenger17-Sep-05 1:18
rich_wenger17-Sep-05 1:18 
GeneralRe: Like Query & Null Values Pin
rich_wenger17-Sep-05 3:21
rich_wenger17-Sep-05 3:21 
GeneralRe: Like Query & Null Values Pin
turbochimp17-Sep-05 5:56
turbochimp17-Sep-05 5:56 
GeneralRe: Like Query & Null Values Pin
turbochimp17-Sep-05 5:36
turbochimp17-Sep-05 5:36 
GeneralRe: Like Query & Null Values Pin
rich_wenger18-Sep-05 14:49
rich_wenger18-Sep-05 14:49 
GeneralRe: Like Query & Null Values Pin
turbochimp18-Sep-05 18:06
turbochimp18-Sep-05 18:06 
AnswerRe: Like Query & Null Values Pin
Mike Dimmick17-Sep-05 10:43
Mike Dimmick17-Sep-05 10:43 
GeneralRe: Like Query & Null Values Pin
rich_wenger18-Sep-05 14:53
rich_wenger18-Sep-05 14:53 
Questionuse mySQL with c# applications Pin
Sasuko16-Sep-05 0:55
Sasuko16-Sep-05 0:55 
AnswerRe: use mySQL with c# applications Pin
enjoycrack16-Sep-05 1:32
enjoycrack16-Sep-05 1:32 
GeneralRe: use mySQL with c# applications Pin
Sasuko16-Sep-05 4:05
Sasuko16-Sep-05 4:05 
AnswerRe: use mySQL with c# applications Pin
André Ziegler17-Sep-05 11:55
André Ziegler17-Sep-05 11:55 
GeneralRe: use mySQL with c# applications Pin
Sasuko17-Sep-05 23:20
Sasuko17-Sep-05 23:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.