|
SQL Server Slipstreaming
1 day ago
by ssvaidya
If you looking for an easy way to slipstream Service Packs and Cumulative Updates into SQL Server 2008, you can find a very convenient tool to accomplish this on CodePlex called SQL 2008 Slipstream Assist. The tool can be downloaded from here: http://sqlslipstreamer.codeplex.com/ If you want to know ...
|
|
An Analysis of Normalization Through the Eyes of the Developer - Part III
2 days ago
by Centriq Training
Paraphrasing E.F. Codd’s First Normal Form, it states that there should be, “No repeating groups”. The language column is the group in this example, below you will find the proposed design implements this rule, while the original design does not. Original design (Products table) ProductID Name Engli ...
|
|
Alias de columna en sentencia WHERE en SQL Server
2 days ago
by Elkin Siabato
Bueno... Realmente no utilizo como tal el alias en la columna WHERE, sino lo que hacemos es emular una tabla apartir de una consulta SELECT. Entonces ahi si podremos utilizar el "alias", que no es alias en realidad, je je.... Pero mejor con el ejemplo: SELECT * FROM ( SELECT AUX1.idcliente, AUX1.val ...
|
|
Crear columna autonumerica a una consulta en SQL Server
2 days ago
by Elkin Siabato
Bueno... seré breve, esta una consulta que utilice para un proyecto: SELECT CLI1.id, CLI1.idcliente, SUM(CLI1.primas), ROW_NUMBER() OVER( ORDER BY SUM(CLI1.primas)ASC ) as 'posicion' FROM sb_clipro CLI1 WHERE CLI1.idproducto IN ( SELECT sb_producto.id FROM sb_producto WHERE sb_producto.nombre IN ('A ...
|