Viewing 8 posts - 1 through 8 (of 8 total)
Hi,
We decided to insert the info using
BEGIN TRANSACTION
INSERT INTO DB2.dbo.Table
SELECT *
FROM DB1.dbo.Table
WHERE CodigoCaso < @cont and CodigoCaso > @ultimo
SET @ultimo = @cont
SET @cont = @cont + 1000
COMMIT TRANSACTION
In order to...
March 6, 2013 at 8:23 am
Hi,
In the past I had problems with BCP because when I try to copy the data to a file some times SQL introduce returns between the data and when I...
March 4, 2013 at 7:36 pm
Hi,
They are on the same SAN. Thanks
March 4, 2013 at 6:20 pm
Hi,
The database is in Simple Mode.
Thanks
March 4, 2013 at 1:19 pm
Hi, I need to insert it into a database. Thanks
March 4, 2013 at 1:07 pm
Hi,
Thanks for your help in effect I solved my problem giving the proxy user the corrects access to the sql server ->
use [WIWBancolombia]
GO
GRANT SELECT ON [dbo].[Caso] TO [PARIS-SQL2005\csalazar]
GO
Taking into account...
September 23, 2009 at 2:02 pm
DECLARE @Fecha DATETIME --MM/DD/YYYY
DECLARE @Resultado VARCHAR(100)
DECLARE @ResultadoCasos BIGINT
DECLARE @ImagenBackup XML
--Establecer los casos que se guardaran
SET @ImagenBackup = ''
--
SET @Resultado = 'No existen casos con esta fecha';
SET @Fecha = getdate()
--Casos...
September 23, 2009 at 11:09 am
When I,
use a normal user i got this error ->
Error = [Microsoft][SQL Native Client]Shared Memory Provider: No process is on the other end of the pipe.
But when i use...
September 23, 2009 at 9:43 am
Viewing 8 posts - 1 through 8 (of 8 total)