Viewing 7 posts - 1 through 7 (of 7 total)
Duh ..
I am able to port any over 100 GB db on MSSQL from server to server , so this DOES work, since I have used it also in...
November 25, 2010 at 9:39 am
Hi ,
*** Don't just give the hungry man a fish, teach him how to catch it as well.
In my opinion this is exactly what I did ; )
Ok...
November 25, 2010 at 9:19 am
There is a solution to be able to deploy sql scripts from folder structure ... so that the dba would do a simple double-click .... regardless of the where the...
November 25, 2010 at 3:47 am
:: Tested on Win7 and Sql Server 2008
:: THIS SCRIPT GOES TO ALL SUBFOLDERS AND RUNS THE
:: YOU NEED THE FOLLOWING FOLDER STRUCTURE:
:: ROOT - THIS IS WHERE...
March 10, 2010 at 12:14 am
declare @table table (id int, [name] varchar(10), gender char(1))
declare @MaleNames table (id int identity(1,1), [name] varchar(10))
insert into @table values (1,'John','M')
insert into @table values (2,'Sue','F')
insert into @table values (3,'Jane','F')
insert into @table...
February 17, 2010 at 1:35 am
for the most bravest here is a perl script to run multiple sql scirpts ...
requirement: the scirpts should be numbered:
1.RUN.scriptname.sql
2.RUN.scriptName2.sql
3...
n. RUN.scirptname3.sql
and placed in the same directory as...
March 24, 2009 at 5:31 am
Viewing 7 posts - 1 through 7 (of 7 total)