Viewing 14 posts - 136 through 149 (of 149 total)
Thanks a lot guys ... with all yours suggestion, I was able to complete this. Happy new year.
January 4, 2008 at 4:54 pm
Jeff Moden (12/22/2007)
I need to break these 10 tables into 50 tables 1 for each state ... Each state will have its own table... What is the best way...
December 22, 2007 at 9:03 pm
Thanks for the help... actually those 50 tables have to be further matched against a huge table to append other info based on addresses.... I did not want to run...
December 22, 2007 at 8:02 pm
Basically I have 10 tables of Individuals Info broken down by First Digit of Zip... like all the zip starting from 1 has table called tble1 and so on... I...
December 22, 2007 at 7:54 pm
Thank you all for all the suggestions... All of them are educational for me and I will use them now and in future.
September 15, 2007 at 11:07 pm
Thanks guys for taking time and responding to my questions. It gives me a good starting point.
April 5, 2007 at 9:31 pm
Thanks Loner. The database structure is same and we have different db for every client. The data file they send us are not of same format and data they provide...
April 4, 2007 at 8:51 pm
Steve thanks for the response. We are talking about 200 clients. Any suggestion. Thanks!
April 2, 2007 at 2:41 pm
It is a good practice to include error message on dts packages if you are scheduling it.
March 31, 2007 at 9:02 am
Thanks Robert... it did work.
EXEC sp_MSForEachDB 'if exists (select * from [?].dbo.sysobjects where [name] = ''communication'' and xtype = ''u'')
begin
select distinct ''[?]'',
a.*, b.Opened, b.HardBounced, b.SoftBounced, b.MalFormed, c.Unsubscribed from (
.........................................................
March 26, 2007 at 3:37 pm
Alok thanks for the response. We have two hundred dtabases. One way is to use
EXEC sp_MSForEachDB 'IF ''[?]'' NOT IN (''master'', ''model'', ''msdb'', ''tempdb'')
March 24, 2007 at 2:42 pm
I think this takes care for all dbs in a server:
EXEC sp_MSForEachDB 'IF ''[?]'' NOT IN (''master'', ''model'', ''msdb'', ''tempdb'')
select top 10 ''[?]'',* from [?].dbo.individual1 o join [?].dbo.address1...
March 23, 2007 at 10:44 pm
Viewing 14 posts - 136 through 149 (of 149 total)