Preguntas etiquetadas con sql-server-2008

195
El principal de SQL Server "dbo" no existe,

Estoy teniendo el siguiente error Cannot execute as the database principal because the principal "dbo" does not exist, this type of principal cannot be impersonated, or you do not have permission. Leí sobre ALTER AUTHORIZATION, pero no tengo idea de en qué base de datos está sucediendo esto....

186
Cómo obtener una suma acumulativa

declare @t table ( id int, SomeNumt int ) insert into @t select 1,10 union select 2,12 union select 3,3 union select 4,15 union select 5,23 select * from @t la selección anterior me devuelve lo siguiente. id SomeNumt 1 10 2 12 3 3 4 15 5 23 ¿Cómo obtengo lo siguiente? id srome CumSrome 1...

183
nvarchar (max) vs NText

¿Cuáles son las ventajas y desventajas de usar los tipos de datos nvarchar(max)vs. NTexten SQL Server? No necesito compatibilidad con versiones anteriores, por lo que está bien que nvarchar(max)no sea compatible con versiones anteriores de SQL Server. Editar: Aparentemente, la pregunta también se...