Etiqueta: sqlserver

SQL Server: Error al conectar con la BBDD [SOLUCIÓN] error: 40 – Could not open a connection to SQL Server

SQL Server: Error al conectar con la BBDD [SOLUCIÓN] error: 40 – Could not open a connection to SQL Server

Aquí encontrarás la solución a: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 – Could not open a connection to …

+ Read More

SQLServer – Actualizar una tabla con datos de otra

SQLServer – Actualizar una tabla con datos de otra

MERGE Ofertarestricciones AS target USING (SELECT idOfertaHotel, hotelDiscount FROM OfertaHotel) AS SOURCE (idOfertaHotel, hotelDiscount) ON (target.idOfertaHotel = SOURCE.idOfertaHotel) WHEN MATCHED THEN UPDATE SET target.Discount = SOURCE.hotelDiscount;MERGE Ofertarestricciones AS target USING (SELECT idOfertaHotel, hotelDiscount FROM OfertaHotel) AS source (idOfertaHotel, hotelDiscount) ON (target.idOfertaHotel = source.idOfertaHotel) WHEN MATCHED THEN UPDATE SET target.Discount = source.hotelDiscount; Donde Ofertarestricciones sería la …

+ Read More

Hosting Recomendado

Hosting Recomendado

¿Qué hosting es el mejor calidad/precio? ¿Qué hosting recomiendas? Para elegir un servidor en el que alojar nuestra Web tendremos que tener en cuenta, principalmente 2 factores: – Tecnología – Volumen ¿Servidor Windows o Linux? Dependiendo de la tecnología de nuestro Web tendremos que elegir entre un servidor Linux (PHP, Java, etc…) o uno de …

+ Read More