Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Replace null values in SQL Server ???
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00821917
Message ID:
00821950
Vues:
20
Hi Victor,

The following select will get the list of all the fields that are character type and nullable. You can either create a cursor using it and do update using dynamic SQL or generate a script that would do update.
SELECT * 
FROM INFORMATION_SCHEMA.COLUMNS
WHERE is_nullable = 'YES' AND data_type LIKE '%char%' 
	AND table_name <> 'dtproperties'
>Don't ask why but.....
>
>Have 184 SQL Server Tables in one database (plus the system tables). Many of these tables have fields which have a dbNull value in them. What needs to happen is all of these need to be replaced with a "", with the exception of the system tables.
>
>Does anyone know a quick way to do this? The thought of going though almost 200 tables and finding the names of all the columns and such seems insane...surely there is a better way??? (I hope I hope)
>
>-Thanks
--sb--
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform