Viewing 10 posts - 1 through 10 (of 10 total)
Thanks Gail,
Its a developers environment with little diskspace on which we occassionally have to load and process data thats about as big as the total available diskspace.
Regards,
Ben
September 20, 2008 at 3:38 pm
I think I can use the sql server objects task and then your renaming option.
thx
January 21, 2008 at 9:54 am
Hello Russel,
Thanks..
Im not sure how to restore DB_X (170 tables) into an existing DB_Y.
The restored DB_X tables need to be dropped and recreated every day
Ben
January 21, 2008 at 9:33 am
Each customer has its own view, its own database and its own file.
I used the dynamic properties task so i dont need to program in AxtiveX.
Furthermore i used a sp to...
August 21, 2007 at 12:58 pm
The platform is SQL2000, but the move content action from view_x to file_x has to take place everytime the user askes for it from within a asp.net application.
A new customer_y can...
August 20, 2007 at 12:32 pm
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS ON
GO
ALTER procedure SP_CREATE_VIEW_TEST
@dbname sysname,
@Klant_ID bigint
as
DECLARE @cmd varchar(3000)
SET @cmd = 'USE ' + @dbname + ';GO;CREATE VIEW FACTUURGEGEVENS_' + convert(varchar,@Klant_ID) + ' as
SELECT ikp.IKP_GROEPNAAM,
ikp.IKP_NAAM,...
August 14, 2007 at 12:14 am
I tried this:
ALTER procedure SP_CREATE_VIEW_TEST
@dbname sysname,
@Klant_ID bigint
as
DECLARE @cmd varchar(3000)
SET @cmd = 'USE ' + @dbname + ';CREATE VIEW FACTUURGEGEVENS_' + convert(varchar,@Klant_ID) + ' as
SELECT ikp.IKP_GROEPNAAM,
ikp.IKP_NAAM,
ks.KS_NUMMER,
ks.KS_NAAM,
lev.LEV_CREDITEURNUMMER,
lev.LEV_NAAM,...
August 13, 2007 at 12:58 am
I tried this but i get :
The name 'USE db_presmon_dwh_9;CREATE TABLE dbo.ETL_TEST (LAAD_KEY bigint IDENTITY (1, 1) NOT NULL , LAAD_DATUM datetime NOT NULL) ON [PRIMARY]' is not a valid...
August 11, 2007 at 9:24 am
You can, however, use the three part name for the table(s) used in the VIEW definition.
August 10, 2007 at 4:34 am
I will look into it, thx for your suggestions.
Ben
August 10, 2007 at 4:30 am
Viewing 10 posts - 1 through 10 (of 10 total)