Viewing 15 posts - 31 through 45 (of 74 total)
May be Red Gate aso does the same, but I have not yet used it.
Embarcadero is a nice tool to compare databases. I have used it extensively
December 8, 2006 at 7:41 am
ooops! data for the previous post
create table t1(f1 int, f2 int)
create table t2(f1 int, f2 int)
insert into t1 values(111,222)
insert into t1 values(222,222)
insert into t1 values(333,222)
insert into t1 values(444,222)
insert into t1...
December 8, 2006 at 7:26 am
select t1.f1, count(t2.f1)
from t1 left outer join t2 on t1.f1 = t2.f1
group by t1.f1
December 8, 2006 at 7:26 am
Christmas Holidays are the best part of the year for our entire family and friends.
This time is more special. My son is coming back after his first semester at college...
December 8, 2006 at 6:58 am
i agree with Ronald San Juan
There is something weird going on in your env
December 7, 2006 at 2:41 pm
Srinidhi,
Sorry to get into sermon mode. But...
The job at hand is one of huge volume.
To get to a viable solution, we need to understand
the data in and out. Till your...
December 7, 2006 at 7:57 am
yes indexing on the second column will increase speed.
In fact I concatenated both the columns and created a new column in the table and used that new column for the...
December 6, 2006 at 9:46 am
Bulk Insert task does not provide much flexibility. If you want to conditionally insert you may want to use Transform Data Task
December 6, 2006 at 9:40 am
Stored Procedure output to Excel
================================
Step 1
======
DDL and DML
===========
if exists (select * from sysobjects where name = 't1')
drop table t1
create table t1(f1 int, f2 datetime)
insert into t1 values(111,getdate()-10)
insert into t1 values(222,getdate()-11)
insert...
December 6, 2006 at 9:06 am
if exists (select * from sysobjects where name = 't1')
drop table t1
create table t1(f1 int, f2 datetime)
insert into t1 values(111,getdate()-10)
insert into t1 values(222,getdate()-11)
insert into t1 values(333,getdate()-12)
insert into t1 values(444,getdate()-13)
insert into...
December 6, 2006 at 7:58 am
do not use 'print' in Stored procedures, if the SP is called from frontends. Specifically ASP pages do break, if they call SPs that contain Print statements. More problemsome when...
December 6, 2006 at 7:47 am
great Greg! I was searching for synonyms
December 6, 2006 at 7:38 am
yep, you can do this very easily in your activeX script of Data Transformation task, as long as your database column is a char/varchar field
December 6, 2006 at 7:29 am
I would suggest a Multiphase Data Pump (Data Driven Query Task).
And you can use the lookup feature for looking up for insertion/updation/deletion.
If you nhave not done these, it may take...
December 6, 2006 at 7:27 am
Viewing 15 posts - 31 through 45 (of 74 total)