Showing posts with label explorer. Show all posts
Showing posts with label explorer. Show all posts

Friday, March 9, 2012

Log Explorer vs. ApexSQL Log vs. SQL Log-Rescue

Opinions?

I've installed all three to try'em out and they all seem to be working
so far, more or less.

Log Explorer has given me a couple of errors but I started over and
continued OK.

ApexSQL Log squawked about "redo for delete cannot be generated for
tables lacking clustered index". Huh? What the...? We have lots of
tables without a clustered index.

I read some reports in Red-Gate's technical support forum about their
product actually bringing down SQL Server. That did not inspire
confidence.

All three install some server-side components like extended stored
proc's which I'm not crazy about and I think all three are server or
instance licensed (does anyone actually purchase more than one license
when it seems like you can easily move any tran log to be analyzed to
the server the product is installed on?). I don't think I'd want to
install any of them on a Production server, at least one that I'm
responsible for!

Thanks,

MartinMartin (mvirta@.olgc.ca) writes:
> ApexSQL Log squawked about "redo for delete cannot be generated for
> tables lacking clustered index". Huh? What the...? We have lots of
> tables without a clustered index.

Probably the people at ApexSQL are like me: they think that every table
should have a clustered index.

If nothing else, fragmentation is easier to keep in check, if you have
a clustered index.

--
Erland Sommarskog, SQL Server MVP, esquel@.sommarskog.se

Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/pr...oads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodin...ions/books.mspx

Log explorer tool?

Hi,
We have most of our OLTP systems on SQL Server 2000 & 2005. But we (top
management) plan to have our Data Warehouse hosted on a different database
like Greenplum/Netezza/Terradata.
One of our aims is to propogate changes in the OLTP db's to the warehouse
database once in 15 minutes. Our idea is to use a tool that can read SQL logs
and determine the changes and thus propogate it to the data warehouse
database.
I am aware that ETL tools can do this, but we would prefer to avoid one.
Also, ETL tools seem to have their own overhead especially while running it
so frequent.
Can someone suggest a few tools? Also, how feasible do you feel is this idea?
Thank you.
Regards,
Karthik> One of our aims is to propogate changes in the OLTP db's to the warehouse
> database once in 15 minutes. Our idea is to use a tool that can read SQL
> logs
> and determine the changes and thus propogate it to the data warehouse
> database.
> I am aware that ETL tools can do this, but we would prefer to avoid one.
> Also, ETL tools seem to have their own overhead especially while running
> it
> so frequent.
> Can someone suggest a few tools? Also, how feasible do you feel is this
> idea?
It sounds like a very expensive and less reliable mode of transactional
replication.
--
Aaron Bertrand
SQL Server MVP
http://www.sqlblog.com/
http://www.aspfaq.com/5006|||Yes. But I cant implement Transactional Replication as some of the tables in
our database does not have primary keys.
I am looking at tools like Data Mirror, Attunity etc...But I wanted to
understand whether you have actually heard of a setup / product like this.
Money doesn't seem to be a problem with the management. Given a choice I
would have gone with a nice huge OLAP database in SQL Server 2005.
Karthik
"Aaron Bertrand [SQL Server MVP]" wrote:
> > One of our aims is to propogate changes in the OLTP db's to the warehouse
> > database once in 15 minutes. Our idea is to use a tool that can read SQL
> > logs
> > and determine the changes and thus propogate it to the data warehouse
> > database.
> >
> > I am aware that ETL tools can do this, but we would prefer to avoid one.
> > Also, ETL tools seem to have their own overhead especially while running
> > it
> > so frequent.
> >
> > Can someone suggest a few tools? Also, how feasible do you feel is this
> > idea?
> It sounds like a very expensive and less reliable mode of transactional
> replication.
> --
> Aaron Bertrand
> SQL Server MVP
> http://www.sqlblog.com/
> http://www.aspfaq.com/5006
>
>|||Well, how up to date does the warehouse have to be? If it can be hourly or
so you could use log shipping. If it can be refreshed daily or every 12
hours you could go with a backup / restore methodology. That would
certainly be less taxing on your production system than continuous log
retrieval / application.
--
Aaron Bertrand
SQL Server MVP
http://www.sqlblog.com/
http://www.aspfaq.com/5006
"Karthik" <Karthik@.discussions.microsoft.com> wrote in message
news:1F6C97BD-D6CD-41AB-B65E-BAFA9E8B66A6@.microsoft.com...
> Yes. But I cant implement Transactional Replication as some of the tables
> in
> our database does not have primary keys.
> I am looking at tools like Data Mirror, Attunity etc...But I wanted to
> understand whether you have actually heard of a setup / product like this.
> Money doesn't seem to be a problem with the management. Given a choice I
> would have gone with a nice huge OLAP database in SQL Server 2005.
> Karthik
> "Aaron Bertrand [SQL Server MVP]" wrote:
>> > One of our aims is to propogate changes in the OLTP db's to the
>> > warehouse
>> > database once in 15 minutes. Our idea is to use a tool that can read
>> > SQL
>> > logs
>> > and determine the changes and thus propogate it to the data warehouse
>> > database.
>> >
>> > I am aware that ETL tools can do this, but we would prefer to avoid
>> > one.
>> > Also, ETL tools seem to have their own overhead especially while
>> > running
>> > it
>> > so frequent.
>> >
>> > Can someone suggest a few tools? Also, how feasible do you feel is this
>> > idea?
>> It sounds like a very expensive and less reliable mode of transactional
>> replication.
>> --
>> Aaron Bertrand
>> SQL Server MVP
>> http://www.sqlblog.com/
>> http://www.aspfaq.com/5006
>>|||Hi Aaron,
But my taget database will not be in SQL Server. As I said earlier, it will
be a database like Greenplum/Netezza/Terradata.
So log shipping, backup/recovery etc will not work for me.
That is the reason why I am looking at a tool that will read changes from
the SQL log and propogate to the destination database.
Thank you.
Regards,
Karthik
"Aaron Bertrand [SQL Server MVP]" wrote:
> Well, how up to date does the warehouse have to be? If it can be hourly or
> so you could use log shipping. If it can be refreshed daily or every 12
> hours you could go with a backup / restore methodology. That would
> certainly be less taxing on your production system than continuous log
> retrieval / application.
> --
> Aaron Bertrand
> SQL Server MVP
> http://www.sqlblog.com/
> http://www.aspfaq.com/5006
>
>
> "Karthik" <Karthik@.discussions.microsoft.com> wrote in message
> news:1F6C97BD-D6CD-41AB-B65E-BAFA9E8B66A6@.microsoft.com...
> > Yes. But I cant implement Transactional Replication as some of the tables
> > in
> > our database does not have primary keys.
> >
> > I am looking at tools like Data Mirror, Attunity etc...But I wanted to
> > understand whether you have actually heard of a setup / product like this.
> >
> > Money doesn't seem to be a problem with the management. Given a choice I
> > would have gone with a nice huge OLAP database in SQL Server 2005.
> >
> > Karthik
> >
> > "Aaron Bertrand [SQL Server MVP]" wrote:
> >
> >> > One of our aims is to propogate changes in the OLTP db's to the
> >> > warehouse
> >> > database once in 15 minutes. Our idea is to use a tool that can read
> >> > SQL
> >> > logs
> >> > and determine the changes and thus propogate it to the data warehouse
> >> > database.
> >> >
> >> > I am aware that ETL tools can do this, but we would prefer to avoid
> >> > one.
> >> > Also, ETL tools seem to have their own overhead especially while
> >> > running
> >> > it
> >> > so frequent.
> >> >
> >> > Can someone suggest a few tools? Also, how feasible do you feel is this
> >> > idea?
> >>
> >> It sounds like a very expensive and less reliable mode of transactional
> >> replication.
> >>
> >> --
> >> Aaron Bertrand
> >> SQL Server MVP
> >> http://www.sqlblog.com/
> >> http://www.aspfaq.com/5006
> >>
> >>
> >>
>
>|||> But my taget database will not be in SQL Server. As I said earlier, it
> will
> be a database like Greenplum/Netezza/Terradata.
Sorry, those sound like products, not platforms, and I am not familiar with
them.
> That is the reason why I am looking at a tool that will read changes from
> the SQL log and propogate to the destination database.
But if it's a different kind of database entirely, I am not sure that is
possible. It is more likely you will need to use some kind of ETL process
that looks at the data, not the log.
A|||On Jun 18, 4:28 pm, "Aaron Bertrand [SQL Server MVP]"
<ten...@.dnartreb.noraa> wrote:
> > But my taget database will not be in SQL Server. As I said earlier, it
> > will
> > be a database like Greenplum/Netezza/Terradata.
> Sorry, those sound like products, not platforms, and I am not familiar with
> them.
> > That is the reason why I am looking at a tool that will read changes from
> > the SQL log and propogate to the destination database.
> But if it's a different kind of database entirely, I am not sure that is
> possible. It is more likely you will need to use some kind of ETL process
> that looks at the data, not the log.
> A
Both Attunity and DataMirror can read the SQL Server log to identify
which records changed in near real time. The main difference between
the tools is how they transform and apply the changes to the target
system.
DataMirror has its own engine to perform "mini" transformation and
apply the result to the target system (e.g. Netezza). Attunity will
push the change records to an ETL tool or the Enterprise Service Bus
(ESB) to perform the transformation and update the target system. I
believe Attunity can plug into SSIS, Microsoft ETL engine.
--James|||Thanks for the info James. Are you aware of tools other that DataMirror and
Attunity? Attunity doesnt seem to support SQL 2005 yet. Data Mirror is very
expensive :(.
Thank you once again,
Karthik
"jamesharring@.gmail.com" wrote:
> On Jun 18, 4:28 pm, "Aaron Bertrand [SQL Server MVP]"
> <ten...@.dnartreb.noraa> wrote:
> > > But my taget database will not be in SQL Server. As I said earlier, it
> > > will
> > > be a database like Greenplum/Netezza/Terradata.
> >
> > Sorry, those sound like products, not platforms, and I am not familiar with
> > them.
> >
> > > That is the reason why I am looking at a tool that will read changes from
> > > the SQL log and propogate to the destination database.
> >
> > But if it's a different kind of database entirely, I am not sure that is
> > possible. It is more likely you will need to use some kind of ETL process
> > that looks at the data, not the log.
> >
> > A
> Both Attunity and DataMirror can read the SQL Server log to identify
> which records changed in near real time. The main difference between
> the tools is how they transform and apply the changes to the target
> system.
> DataMirror has its own engine to perform "mini" transformation and
> apply the result to the target system (e.g. Netezza). Attunity will
> push the change records to an ETL tool or the Enterprise Service Bus
> (ESB) to perform the transformation and update the target system. I
> believe Attunity can plug into SSIS, Microsoft ETL engine.
> --James
>|||On Jun 19, 11:18 am, Karthik <Kart...@.discussions.microsoft.com>
wrote:
> Thanks for the info James. Are you aware of tools other that DataMirror and
> Attunity? Attunity doesnt seem to support SQL 2005 yet. Data Mirror is very
> expensive :(.
> Thank you once again,
> Karthik
>
>
>From what I heard the Attunity CDC for SQL Server 2005 is now in Beta.
As for alternatives... If you already own an ETL tool or ESB you may
want to check with your vendor and see if they have a solution for
that. Many of these vendors provide their own change data capture
adapter for SQL Server as an add-on product. Another option might be
GoldenGate but I don't assume they'll come cheap either...
--James|||I haven't looked at all of their offerings but maybe parallel computers tech
has something you can leverage.
http://www.pcticorp.com/
--
Aaron Bertrand
SQL Server MVP
http://www.sqlblog.com/
http://www.aspfaq.com/5006
"Karthik" <Karthik@.discussions.microsoft.com> wrote in message
news:93D0F78A-2213-4B63-8548-4E0B63914E56@.microsoft.com...
> Thanks for the info James. Are you aware of tools other that DataMirror
> and
> Attunity? Attunity doesnt seem to support SQL 2005 yet. Data Mirror is
> very
> expensive :(.
> Thank you once again,
> Karthik
>
> "jamesharring@.gmail.com" wrote:
>> On Jun 18, 4:28 pm, "Aaron Bertrand [SQL Server MVP]"
>> <ten...@.dnartreb.noraa> wrote:
>> > > But my taget database will not be in SQL Server. As I said earlier,
>> > > it
>> > > will
>> > > be a database like Greenplum/Netezza/Terradata.
>> >
>> > Sorry, those sound like products, not platforms, and I am not familiar
>> > with
>> > them.
>> >
>> > > That is the reason why I am looking at a tool that will read changes
>> > > from
>> > > the SQL log and propogate to the destination database.
>> >
>> > But if it's a different kind of database entirely, I am not sure that
>> > is
>> > possible. It is more likely you will need to use some kind of ETL
>> > process
>> > that looks at the data, not the log.
>> >
>> > A
>> Both Attunity and DataMirror can read the SQL Server log to identify
>> which records changed in near real time. The main difference between
>> the tools is how they transform and apply the changes to the target
>> system.
>> DataMirror has its own engine to perform "mini" transformation and
>> apply the result to the target system (e.g. Netezza). Attunity will
>> push the change records to an ETL tool or the Enterprise Service Bus
>> (ESB) to perform the transformation and update the target system. I
>> believe Attunity can plug into SSIS, Microsoft ETL engine.
>> --James
>>|||I recommend ApexSQL Log. It can do 'auditing' just as you describe, and it
also has a command line executable so you can create batch files to extract
and migrate records and schedule those batch files to run every 15 mins
using windows scheduler.
--
TheSQLGuru
President
Indicium Resources, Inc.
"Karthik" <Karthik@.discussions.microsoft.com> wrote in message
news:F18F4630-B9CB-4A74-BDE0-26FED9459F17@.microsoft.com...
> Hi,
> We have most of our OLTP systems on SQL Server 2000 & 2005. But we (top
> management) plan to have our Data Warehouse hosted on a different database
> like Greenplum/Netezza/Terradata.
> One of our aims is to propogate changes in the OLTP db's to the warehouse
> database once in 15 minutes. Our idea is to use a tool that can read SQL
> logs
> and determine the changes and thus propogate it to the data warehouse
> database.
> I am aware that ETL tools can do this, but we would prefer to avoid one.
> Also, ETL tools seem to have their own overhead especially while running
> it
> so frequent.
> Can someone suggest a few tools? Also, how feasible do you feel is this
> idea?
> Thank you.
> Regards,
> Karthik
>|||Thank you James and Aaron. I will approach these companies and check whether
they have a solution that will meet our need (in our budget).
Thank you.
Karthik
"Aaron Bertrand [SQL Server MVP]" wrote:
> I haven't looked at all of their offerings but maybe parallel computers tech
> has something you can leverage.
> http://www.pcticorp.com/
> --
> Aaron Bertrand
> SQL Server MVP
> http://www.sqlblog.com/
> http://www.aspfaq.com/5006
>
> "Karthik" <Karthik@.discussions.microsoft.com> wrote in message
> news:93D0F78A-2213-4B63-8548-4E0B63914E56@.microsoft.com...
> > Thanks for the info James. Are you aware of tools other that DataMirror
> > and
> > Attunity? Attunity doesnt seem to support SQL 2005 yet. Data Mirror is
> > very
> > expensive :(.
> >
> > Thank you once again,
> > Karthik
> >
> >
> >
> > "jamesharring@.gmail.com" wrote:
> >
> >> On Jun 18, 4:28 pm, "Aaron Bertrand [SQL Server MVP]"
> >> <ten...@.dnartreb.noraa> wrote:
> >> > > But my taget database will not be in SQL Server. As I said earlier,
> >> > > it
> >> > > will
> >> > > be a database like Greenplum/Netezza/Terradata.
> >> >
> >> > Sorry, those sound like products, not platforms, and I am not familiar
> >> > with
> >> > them.
> >> >
> >> > > That is the reason why I am looking at a tool that will read changes
> >> > > from
> >> > > the SQL log and propogate to the destination database.
> >> >
> >> > But if it's a different kind of database entirely, I am not sure that
> >> > is
> >> > possible. It is more likely you will need to use some kind of ETL
> >> > process
> >> > that looks at the data, not the log.
> >> >
> >> > A
> >>
> >> Both Attunity and DataMirror can read the SQL Server log to identify
> >> which records changed in near real time. The main difference between
> >> the tools is how they transform and apply the changes to the target
> >> system.
> >> DataMirror has its own engine to perform "mini" transformation and
> >> apply the result to the target system (e.g. Netezza). Attunity will
> >> push the change records to an ETL tool or the Enterprise Service Bus
> >> (ESB) to perform the transformation and update the target system. I
> >> believe Attunity can plug into SSIS, Microsoft ETL engine.
> >>
> >> --James
> >>
> >>
>
>|||FWIW, Katmai (next release of SQL Server) has a planned feature called "Change Data Capture"
targeted at this situation. I haven't played with it yet, but I've skimmed the documentation. A
pre-release of Katmai is available for download.
--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://sqlblog.com/blogs/tibor_karaszi
"TheSQLGuru" <kgboles@.earthlink.net> wrote in message news:ONKJ98osHHA.4800@.TK2MSFTNGP05.phx.gbl...
>I recommend ApexSQL Log. It can do 'auditing' just as you describe, and it also has a command line
>executable so you can create batch files to extract and migrate records and schedule those batch
>files to run every 15 mins using windows scheduler.
> --
> TheSQLGuru
> President
> Indicium Resources, Inc.
> "Karthik" <Karthik@.discussions.microsoft.com> wrote in message
> news:F18F4630-B9CB-4A74-BDE0-26FED9459F17@.microsoft.com...
>> Hi,
>> We have most of our OLTP systems on SQL Server 2000 & 2005. But we (top
>> management) plan to have our Data Warehouse hosted on a different database
>> like Greenplum/Netezza/Terradata.
>> One of our aims is to propogate changes in the OLTP db's to the warehouse
>> database once in 15 minutes. Our idea is to use a tool that can read SQL logs
>> and determine the changes and thus propogate it to the data warehouse
>> database.
>> I am aware that ETL tools can do this, but we would prefer to avoid one.
>> Also, ETL tools seem to have their own overhead especially while running it
>> so frequent.
>> Can someone suggest a few tools? Also, how feasible do you feel is this idea?
>> Thank you.
>> Regards,
>> Karthik
>|||I too am anxious to see how this functionality is implemented.
--
TheSQLGuru
President
Indicium Resources, Inc.
"Tibor Karaszi" <tibor_please.no.email_karaszi@.hotmail.nomail.com> wrote in
message news:D44A5C96-36F9-48D6-9890-431FAC763B20@.microsoft.com...
> FWIW, Katmai (next release of SQL Server) has a planned feature called
> "Change Data Capture" targeted at this situation. I haven't played with it
> yet, but I've skimmed the documentation. A pre-release of Katmai is
> available for download.
> --
> Tibor Karaszi, SQL Server MVP
> http://www.karaszi.com/sqlserver/default.asp
> http://sqlblog.com/blogs/tibor_karaszi
>
> "TheSQLGuru" <kgboles@.earthlink.net> wrote in message
> news:ONKJ98osHHA.4800@.TK2MSFTNGP05.phx.gbl...
>>I recommend ApexSQL Log. It can do 'auditing' just as you describe, and
>>it also has a command line executable so you can create batch files to
>>extract and migrate records and schedule those batch files to run every 15
>>mins using windows scheduler.
>> --
>> TheSQLGuru
>> President
>> Indicium Resources, Inc.
>> "Karthik" <Karthik@.discussions.microsoft.com> wrote in message
>> news:F18F4630-B9CB-4A74-BDE0-26FED9459F17@.microsoft.com...
>> Hi,
>> We have most of our OLTP systems on SQL Server 2000 & 2005. But we (top
>> management) plan to have our Data Warehouse hosted on a different
>> database
>> like Greenplum/Netezza/Terradata.
>> One of our aims is to propogate changes in the OLTP db's to the
>> warehouse
>> database once in 15 minutes. Our idea is to use a tool that can read SQL
>> logs
>> and determine the changes and thus propogate it to the data warehouse
>> database.
>> I am aware that ETL tools can do this, but we would prefer to avoid one.
>> Also, ETL tools seem to have their own overhead especially while running
>> it
>> so frequent.
>> Can someone suggest a few tools? Also, how feasible do you feel is this
>> idea?
>> Thank you.
>> Regards,
>> Karthik
>>
>

Log explorer tool?

Hi,
We have most of our OLTP systems on SQL Server 2000 & 2005. But we (top
management) plan to have our Data Warehouse hosted on a different database
like Greenplum/Netezza/Terradata.
One of our aims is to propogate changes in the OLTP db's to the warehouse
database once in 15 minutes. Our idea is to use a tool that can read SQL logs
and determine the changes and thus propogate it to the data warehouse
database.
I am aware that ETL tools can do this, but we would prefer to avoid one.
Also, ETL tools seem to have their own overhead especially while running it
so frequent.
Can someone suggest a few tools? Also, how feasible do you feel is this idea?
Thank you.
Regards,
Karthik
> One of our aims is to propogate changes in the OLTP db's to the warehouse
> database once in 15 minutes. Our idea is to use a tool that can read SQL
> logs
> and determine the changes and thus propogate it to the data warehouse
> database.
> I am aware that ETL tools can do this, but we would prefer to avoid one.
> Also, ETL tools seem to have their own overhead especially while running
> it
> so frequent.
> Can someone suggest a few tools? Also, how feasible do you feel is this
> idea?
It sounds like a very expensive and less reliable mode of transactional
replication.
Aaron Bertrand
SQL Server MVP
http://www.sqlblog.com/
http://www.aspfaq.com/5006
|||Yes. But I cant implement Transactional Replication as some of the tables in
our database does not have primary keys.
I am looking at tools like Data Mirror, Attunity etc...But I wanted to
understand whether you have actually heard of a setup / product like this.
Money doesn't seem to be a problem with the management. Given a choice I
would have gone with a nice huge OLAP database in SQL Server 2005.
Karthik
"Aaron Bertrand [SQL Server MVP]" wrote:

> It sounds like a very expensive and less reliable mode of transactional
> replication.
> --
> Aaron Bertrand
> SQL Server MVP
> http://www.sqlblog.com/
> http://www.aspfaq.com/5006
>
>
|||Well, how up to date does the warehouse have to be? If it can be hourly or
so you could use log shipping. If it can be refreshed daily or every 12
hours you could go with a backup / restore methodology. That would
certainly be less taxing on your production system than continuous log
retrieval / application.
Aaron Bertrand
SQL Server MVP
http://www.sqlblog.com/
http://www.aspfaq.com/5006
"Karthik" <Karthik@.discussions.microsoft.com> wrote in message
news:1F6C97BD-D6CD-41AB-B65E-BAFA9E8B66A6@.microsoft.com...[vbcol=seagreen]
> Yes. But I cant implement Transactional Replication as some of the tables
> in
> our database does not have primary keys.
> I am looking at tools like Data Mirror, Attunity etc...But I wanted to
> understand whether you have actually heard of a setup / product like this.
> Money doesn't seem to be a problem with the management. Given a choice I
> would have gone with a nice huge OLAP database in SQL Server 2005.
> Karthik
> "Aaron Bertrand [SQL Server MVP]" wrote:
|||Hi Aaron,
But my taget database will not be in SQL Server. As I said earlier, it will
be a database like Greenplum/Netezza/Terradata.
So log shipping, backup/recovery etc will not work for me.
That is the reason why I am looking at a tool that will read changes from
the SQL log and propogate to the destination database.
Thank you.
Regards,
Karthik
"Aaron Bertrand [SQL Server MVP]" wrote:

> Well, how up to date does the warehouse have to be? If it can be hourly or
> so you could use log shipping. If it can be refreshed daily or every 12
> hours you could go with a backup / restore methodology. That would
> certainly be less taxing on your production system than continuous log
> retrieval / application.
> --
> Aaron Bertrand
> SQL Server MVP
> http://www.sqlblog.com/
> http://www.aspfaq.com/5006
>
>
> "Karthik" <Karthik@.discussions.microsoft.com> wrote in message
> news:1F6C97BD-D6CD-41AB-B65E-BAFA9E8B66A6@.microsoft.com...
>
>
|||> But my taget database will not be in SQL Server. As I said earlier, it
> will
> be a database like Greenplum/Netezza/Terradata.
Sorry, those sound like products, not platforms, and I am not familiar with
them.

> That is the reason why I am looking at a tool that will read changes from
> the SQL log and propogate to the destination database.
But if it's a different kind of database entirely, I am not sure that is
possible. It is more likely you will need to use some kind of ETL process
that looks at the data, not the log.
A
|||On Jun 18, 4:28 pm, "Aaron Bertrand [SQL Server MVP]"
<ten...@.dnartreb.noraa> wrote:
> Sorry, those sound like products, not platforms, and I am not familiar with
> them.
>
> But if it's a different kind of database entirely, I am not sure that is
> possible. It is more likely you will need to use some kind of ETL process
> that looks at the data, not the log.
> A
Both Attunity and DataMirror can read the SQL Server log to identify
which records changed in near real time. The main difference between
the tools is how they transform and apply the changes to the target
system.
DataMirror has its own engine to perform "mini" transformation and
apply the result to the target system (e.g. Netezza). Attunity will
push the change records to an ETL tool or the Enterprise Service Bus
(ESB) to perform the transformation and update the target system. I
believe Attunity can plug into SSIS, Microsoft ETL engine.
--James
|||Thanks for the info James. Are you aware of tools other that DataMirror and
Attunity? Attunity doesnt seem to support SQL 2005 yet. Data Mirror is very
expensive .
Thank you once again,
Karthik
"jamesharring@.gmail.com" wrote:

> On Jun 18, 4:28 pm, "Aaron Bertrand [SQL Server MVP]"
> <ten...@.dnartreb.noraa> wrote:
> Both Attunity and DataMirror can read the SQL Server log to identify
> which records changed in near real time. The main difference between
> the tools is how they transform and apply the changes to the target
> system.
> DataMirror has its own engine to perform "mini" transformation and
> apply the result to the target system (e.g. Netezza). Attunity will
> push the change records to an ETL tool or the Enterprise Service Bus
> (ESB) to perform the transformation and update the target system. I
> believe Attunity can plug into SSIS, Microsoft ETL engine.
> --James
>
|||On Jun 19, 11:18 am, Karthik <Kart...@.discussions.microsoft.com>
wrote:
> Thanks for the info James. Are you aware of tools other that DataMirror and
> Attunity? Attunity doesnt seem to support SQL 2005 yet. Data Mirror is very
> expensive .
> Thank you once again,
> Karthik
>
>

>From what I heard the Attunity CDC for SQL Server 2005 is now in Beta.
As for alternatives... If you already own an ETL tool or ESB you may
want to check with your vendor and see if they have a solution for
that. Many of these vendors provide their own change data capture
adapter for SQL Server as an add-on product. Another option might be
GoldenGate but I don't assume they'll come cheap either...
--James
|||I haven't looked at all of their offerings but maybe parallel computers tech
has something you can leverage.
http://www.pcticorp.com/
Aaron Bertrand
SQL Server MVP
http://www.sqlblog.com/
http://www.aspfaq.com/5006
"Karthik" <Karthik@.discussions.microsoft.com> wrote in message
news:93D0F78A-2213-4B63-8548-4E0B63914E56@.microsoft.com...[vbcol=seagreen]
> Thanks for the info James. Are you aware of tools other that DataMirror
> and
> Attunity? Attunity doesnt seem to support SQL 2005 yet. Data Mirror is
> very
> expensive .
> Thank you once again,
> Karthik
>
> "jamesharring@.gmail.com" wrote:

Log explorer tool?

Hi,
We have most of our OLTP systems on SQL Server 2000 & 2005. But we (top
management) plan to have our Data Warehouse hosted on a different database
like Greenplum/Netezza/Terradata.
One of our aims is to propogate changes in the OLTP db's to the warehouse
database once in 15 minutes. Our idea is to use a tool that can read SQL log
s
and determine the changes and thus propogate it to the data warehouse
database.
I am aware that ETL tools can do this, but we would prefer to avoid one.
Also, ETL tools seem to have their own overhead especially while running it
so frequent.
Can someone suggest a few tools? Also, how feasible do you feel is this idea
?
Thank you.
Regards,
Karthik> One of our aims is to propogate changes in the OLTP db's to the warehouse
> database once in 15 minutes. Our idea is to use a tool that can read SQL
> logs
> and determine the changes and thus propogate it to the data warehouse
> database.
> I am aware that ETL tools can do this, but we would prefer to avoid one.
> Also, ETL tools seem to have their own overhead especially while running
> it
> so frequent.
> Can someone suggest a few tools? Also, how feasible do you feel is this
> idea?
It sounds like a very expensive and less reliable mode of transactional
replication.
Aaron Bertrand
SQL Server MVP
http://www.sqlblog.com/
http://www.aspfaq.com/5006|||Yes. But I cant implement Transactional Replication as some of the tables in
our database does not have primary keys.
I am looking at tools like Data Mirror, Attunity etc...But I wanted to
understand whether you have actually heard of a setup / product like this.
Money doesn't seem to be a problem with the management. Given a choice I
would have gone with a nice huge OLAP database in SQL Server 2005.
Karthik
"Aaron Bertrand [SQL Server MVP]" wrote:

> It sounds like a very expensive and less reliable mode of transactional
> replication.
> --
> Aaron Bertrand
> SQL Server MVP
> http://www.sqlblog.com/
> http://www.aspfaq.com/5006
>
>|||Well, how up to date does the warehouse have to be? If it can be hourly or
so you could use log shipping. If it can be refreshed daily or every 12
hours you could go with a backup / restore methodology. That would
certainly be less taxing on your production system than continuous log
retrieval / application.
Aaron Bertrand
SQL Server MVP
http://www.sqlblog.com/
http://www.aspfaq.com/5006
"Karthik" <Karthik@.discussions.microsoft.com> wrote in message
news:1F6C97BD-D6CD-41AB-B65E-BAFA9E8B66A6@.microsoft.com...[vbcol=seagreen]
> Yes. But I cant implement Transactional Replication as some of the tables
> in
> our database does not have primary keys.
> I am looking at tools like Data Mirror, Attunity etc...But I wanted to
> understand whether you have actually heard of a setup / product like this.
> Money doesn't seem to be a problem with the management. Given a choice I
> would have gone with a nice huge OLAP database in SQL Server 2005.
> Karthik
> "Aaron Bertrand [SQL Server MVP]" wrote:
>|||Hi Aaron,
But my taget database will not be in SQL Server. As I said earlier, it will
be a database like Greenplum/Netezza/Terradata.
So log shipping, backup/recovery etc will not work for me.
That is the reason why I am looking at a tool that will read changes from
the SQL log and propogate to the destination database.
Thank you.
Regards,
Karthik
"Aaron Bertrand [SQL Server MVP]" wrote:

> Well, how up to date does the warehouse have to be? If it can be hourly o
r
> so you could use log shipping. If it can be refreshed daily or every 12
> hours you could go with a backup / restore methodology. That would
> certainly be less taxing on your production system than continuous log
> retrieval / application.
> --
> Aaron Bertrand
> SQL Server MVP
> http://www.sqlblog.com/
> http://www.aspfaq.com/5006
>
>
> "Karthik" <Karthik@.discussions.microsoft.com> wrote in message
> news:1F6C97BD-D6CD-41AB-B65E-BAFA9E8B66A6@.microsoft.com...
>
>|||> But my taget database will not be in SQL Server. As I said earlier, it
> will
> be a database like Greenplum/Netezza/Terradata.
Sorry, those sound like products, not platforms, and I am not familiar with
them.

> That is the reason why I am looking at a tool that will read changes from
> the SQL log and propogate to the destination database.
But if it's a different kind of database entirely, I am not sure that is
possible. It is more likely you will need to use some kind of ETL process
that looks at the data, not the log.
A|||On Jun 18, 4:28 pm, "Aaron Bertrand [SQL Server MVP]"
<ten...@.dnartreb.noraa> wrote:
> Sorry, those sound like products, not platforms, and I am not familiar wit
h
> them.
>
> But if it's a different kind of database entirely, I am not sure that is
> possible. It is more likely you will need to use some kind of ETL process
> that looks at the data, not the log.
> A
Both Attunity and DataMirror can read the SQL Server log to identify
which records changed in near real time. The main difference between
the tools is how they transform and apply the changes to the target
system.
DataMirror has its own engine to perform "mini" transformation and
apply the result to the target system (e.g. Netezza). Attunity will
push the change records to an ETL tool or the Enterprise Service Bus
(ESB) to perform the transformation and update the target system. I
believe Attunity can plug into SSIS, Microsoft ETL engine.
--James|||I recommend ApexSQL Log. It can do 'auditing' just as you describe, and it
also has a command line executable so you can create batch files to extract
and migrate records and schedule those batch files to run every 15 mins
using windows scheduler.
TheSQLGuru
President
Indicium Resources, Inc.
"Karthik" <Karthik@.discussions.microsoft.com> wrote in message
news:F18F4630-B9CB-4A74-BDE0-26FED9459F17@.microsoft.com...
> Hi,
> We have most of our OLTP systems on SQL Server 2000 & 2005. But we (top
> management) plan to have our Data Warehouse hosted on a different database
> like Greenplum/Netezza/Terradata.
> One of our aims is to propogate changes in the OLTP db's to the warehouse
> database once in 15 minutes. Our idea is to use a tool that can read SQL
> logs
> and determine the changes and thus propogate it to the data warehouse
> database.
> I am aware that ETL tools can do this, but we would prefer to avoid one.
> Also, ETL tools seem to have their own overhead especially while running
> it
> so frequent.
> Can someone suggest a few tools? Also, how feasible do you feel is this
> idea?
> Thank you.
> Regards,
> Karthik
>|||Thank you James and Aaron. I will approach these companies and check whether
they have a solution that will meet our need (in our budget).
Thank you.
Karthik
"Aaron Bertrand [SQL Server MVP]" wrote:

> I haven't looked at all of their offerings but maybe parallel computers te
ch
> has something you can leverage.
> http://www.pcticorp.com/
> --
> Aaron Bertrand
> SQL Server MVP
> http://www.sqlblog.com/
> http://www.aspfaq.com/5006
>
> "Karthik" <Karthik@.discussions.microsoft.com> wrote in message
> news:93D0F78A-2213-4B63-8548-4E0B63914E56@.microsoft.com...
>
>|||FWIW, Katmai (next release of SQL Server) has a planned feature called "Chan
ge Data Capture"
targeted at this situation. I haven't played with it yet, but I've skimmed t
he documentation. A
pre-release of Katmai is available for download.
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://sqlblog.com/blogs/tibor_karaszi
"TheSQLGuru" <kgboles@.earthlink.net> wrote in message news:ONKJ98osHHA.4800@.TK2MSFTNGP05.phx
.gbl...
>I recommend ApexSQL Log. It can do 'auditing' just as you describe, and it
also has a command line
>executable so you can create batch files to extract and migrate records and
schedule those batch
>files to run every 15 mins using windows scheduler.
> --
> TheSQLGuru
> President
> Indicium Resources, Inc.
> "Karthik" <Karthik@.discussions.microsoft.com> wrote in message
> news:F18F4630-B9CB-4A74-BDE0-26FED9459F17@.microsoft.com...
>

Log Explorer

Microsoft or SQL Server does not have such tool woul be
sufficient (Read the question) !!!!!!!!!!!!!

>--Original Message--
>Is there any way to find out what is in the Database log
>file without using a third party utility (Something from
>SQL Server itself or Microsoft) ? Another words, track
>the transactions in the log.....
>Thanks.
>.
>
Relax. You ask a question and get some additional information. How can this make you angry?
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
http://www.sqlug.se/
"Rick" <anonymous@.discussions.microsoft.com> wrote in message
news:50ea01c52337$f3f09190$a601280a@.phx.gbl...[vbcol=seagreen]
> Microsoft or SQL Server does not have such tool woul be
> sufficient (Read the question) !!!!!!!!!!!!!
>
|||Your links don't give me anything...Are you just
advertising yourself !!!!!!!!!!!

>--Original Message--
>Relax. You ask a question and get some additional
information. How can this make you angry?
>--
>Tibor Karaszi, SQL Server MVP
>http://www.karaszi.com/sqlserver/default.asp
>http://www.solidqualitylearning.com/
>http://www.sqlug.se/
>
>"Rick" <anonymous@.discussions.microsoft.com> wrote in
message
>news:50ea01c52337$f3f09190$a601280a@.phx.gbl...
>
>.
>
|||> Your links don't give me anything...
Since you asked about reading the transaction log, I thought that knowledge about the log reader
tools available could be interesting. I've listed three such tools in my website, on my links page:
http://www.karaszi.com/SQLServer/links.asp
I might have been wrong in that assumption...

> Are you just
> advertising yourself !!!!!!!!!!!
On my website, I have a links page, a number of technical articles with tips, gotchas and other
technical information, about newsgroups and other stuff. I also mention who I am. I leave it up to
the reader to determine whether the website has any value or only serve as a mean to advertise
myself.
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
http://www.sqlug.se/
"Rick" <anonymous@.discussions.microsoft.com> wrote in message
news:553c01c5233f$bb049a40$a401280a@.phx.gbl...[vbcol=seagreen]
> Your links don't give me anything...Are you just
> advertising yourself !!!!!!!!!!!
>
> information. How can this make you angry?
> message
|||Did not want to be rude......Some people have the
obsession to send people to their web site for
anything.....I knew that there wasn't a clear-cut
answer......It is our management getting pressured from
the security companies and pushing it down to us. The
problem is that they are cheap enough not to get any third
party utilities and act like bunch of morons when you
explain them what is available in SQL Server and what is
available out there......did not mean to take out of
you....
Thanks.

>--Original Message--
>Since you asked about reading the transaction log, I
thought that knowledge about the log reader
>tools available could be interesting. I've listed three
such tools in my website, on my links page:
>http://www.karaszi.com/SQLServer/links.asp
>I might have been wrong in that assumption...
>
>On my website, I have a links page, a number of technical
articles with tips, gotchas and other
>technical information, about newsgroups and other stuff.
I also mention who I am. I leave it up to
>the reader to determine whether the website has any value
or only serve as a mean to advertise
>myself.
>--
>Tibor Karaszi, SQL Server MVP
>http://www.karaszi.com/sqlserver/default.asp
>http://www.solidqualitylearning.com/
>http://www.sqlug.se/
>
>"Rick" <anonymous@.discussions.microsoft.com> wrote in
message[vbcol=seagreen]
>news:553c01c5233f$bb049a40$a401280a@.phx.gbl...
be[vbcol=seagreen]
log[vbcol=seagreen]
from[vbcol=seagreen]
track
>
>.
>

Log Explorer

Is there any way to find out what is in the Database log
file without using a third party utility (Something from
SQL Server itself or Microsoft) ' Another words, track
the transactions in the log.....
Thanks.AFAIK, Log Explorer from Lumigent is the only tool capable of doing such
thing...
-Argenis
"Rick" <anonymous@.discussions.microsoft.com> wrote in message
news:53f101c5232a$7c1d9800$a401280a@.phx.gbl...
> Is there any way to find out what is in the Database log
> file without using a third party utility (Something from
> SQL Server itself or Microsoft) ' Another words, track
> the transactions in the log.....
> Thanks.|||I've listed three such tools on the links page on my web site (see my signature).
--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
http://www.sqlug.se/
"Argenis Fernandez" <argenis@.spam.sucks.gmail.com> wrote in message
news:uGJ7qwyIFHA.2648@.TK2MSFTNGP14.phx.gbl...
> AFAIK, Log Explorer from Lumigent is the only tool capable of doing such
> thing...
> -Argenis
> "Rick" <anonymous@.discussions.microsoft.com> wrote in message
> news:53f101c5232a$7c1d9800$a401280a@.phx.gbl...
>> Is there any way to find out what is in the Database log
>> file without using a third party utility (Something from
>> SQL Server itself or Microsoft) ' Another words, track
>> the transactions in the log.....
>> Thanks.
>|||And LogPi (www.logpi.com)
Regards
Mike
"Argenis Fernandez" wrote:
> AFAIK, Log Explorer from Lumigent is the only tool capable of doing such
> thing...
> -Argenis
> "Rick" <anonymous@.discussions.microsoft.com> wrote in message
> news:53f101c5232a$7c1d9800$a401280a@.phx.gbl...
> > Is there any way to find out what is in the Database log
> > file without using a third party utility (Something from
> > SQL Server itself or Microsoft) ' Another words, track
> > the transactions in the log.....
> >
> > Thanks.
>
>|||Microsoft or SQL Server does not have such tool woul be
sufficient (Read the question) !!!!!!!!!!!!!
>--Original Message--
>Is there any way to find out what is in the Database log
>file without using a third party utility (Something from
>SQL Server itself or Microsoft) ' Another words, track
>the transactions in the log.....
>Thanks.
>.
>|||Relax. You ask a question and get some additional information. How can this make you angry?
--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
http://www.sqlug.se/
"Rick" <anonymous@.discussions.microsoft.com> wrote in message
news:50ea01c52337$f3f09190$a601280a@.phx.gbl...
> Microsoft or SQL Server does not have such tool woul be
> sufficient (Read the question) !!!!!!!!!!!!!
>
>>--Original Message--
>>Is there any way to find out what is in the Database log
>>file without using a third party utility (Something from
>>SQL Server itself or Microsoft) ' Another words, track
>>the transactions in the log.....
>>Thanks.
>>.|||Your links don't give me anything...Are you just
advertising yourself !!!!!!!!!!!
>--Original Message--
>Relax. You ask a question and get some additional
information. How can this make you angry?
>--
>Tibor Karaszi, SQL Server MVP
>http://www.karaszi.com/sqlserver/default.asp
>http://www.solidqualitylearning.com/
>http://www.sqlug.se/
>
>"Rick" <anonymous@.discussions.microsoft.com> wrote in
message
>news:50ea01c52337$f3f09190$a601280a@.phx.gbl...
>> Microsoft or SQL Server does not have such tool woul be
>> sufficient (Read the question) !!!!!!!!!!!!!
>>
>>--Original Message--
>>Is there any way to find out what is in the Database log
>>file without using a third party utility (Something from
>>SQL Server itself or Microsoft) ' Another words, track
>>the transactions in the log.....
>>Thanks.
>>.
>
>.
>|||> Your links don't give me anything...
Since you asked about reading the transaction log, I thought that knowledge about the log reader
tools available could be interesting. I've listed three such tools in my website, on my links page:
http://www.karaszi.com/SQLServer/links.asp
I might have been wrong in that assumption...
> Are you just
> advertising yourself !!!!!!!!!!!
On my website, I have a links page, a number of technical articles with tips, gotchas and other
technical information, about newsgroups and other stuff. I also mention who I am. I leave it up to
the reader to determine whether the website has any value or only serve as a mean to advertise
myself.
--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
http://www.sqlug.se/
"Rick" <anonymous@.discussions.microsoft.com> wrote in message
news:553c01c5233f$bb049a40$a401280a@.phx.gbl...
> Your links don't give me anything...Are you just
> advertising yourself !!!!!!!!!!!
>
>>--Original Message--
>>Relax. You ask a question and get some additional
> information. How can this make you angry?
>>--
>>Tibor Karaszi, SQL Server MVP
>>http://www.karaszi.com/sqlserver/default.asp
>>http://www.solidqualitylearning.com/
>>http://www.sqlug.se/
>>
>>"Rick" <anonymous@.discussions.microsoft.com> wrote in
> message
>>news:50ea01c52337$f3f09190$a601280a@.phx.gbl...
>> Microsoft or SQL Server does not have such tool woul be
>> sufficient (Read the question) !!!!!!!!!!!!!
>>
>>--Original Message--
>>Is there any way to find out what is in the Database log
>>file without using a third party utility (Something from
>>SQL Server itself or Microsoft) ' Another words, track
>>the transactions in the log.....
>>Thanks.
>>.
>>
>>.|||Did not want to be rude......Some people have the
obsession to send people to their web site for
anything.....I knew that there wasn't a clear-cut
answer......It is our management getting pressured from
the security companies and pushing it down to us. The
problem is that they are cheap enough not to get any third
party utilities and act like bunch of morons when you
explain them what is available in SQL Server and what is
available out there......did not mean to take out of
you....
Thanks.
>--Original Message--
>> Your links don't give me anything...
>Since you asked about reading the transaction log, I
thought that knowledge about the log reader
>tools available could be interesting. I've listed three
such tools in my website, on my links page:
>http://www.karaszi.com/SQLServer/links.asp
>I might have been wrong in that assumption...
>
>> Are you just
>> advertising yourself !!!!!!!!!!!
>On my website, I have a links page, a number of technical
articles with tips, gotchas and other
>technical information, about newsgroups and other stuff.
I also mention who I am. I leave it up to
>the reader to determine whether the website has any value
or only serve as a mean to advertise
>myself.
>--
>Tibor Karaszi, SQL Server MVP
>http://www.karaszi.com/sqlserver/default.asp
>http://www.solidqualitylearning.com/
>http://www.sqlug.se/
>
>"Rick" <anonymous@.discussions.microsoft.com> wrote in
message
>news:553c01c5233f$bb049a40$a401280a@.phx.gbl...
>> Your links don't give me anything...Are you just
>> advertising yourself !!!!!!!!!!!
>>
>>--Original Message--
>>Relax. You ask a question and get some additional
>> information. How can this make you angry?
>>--
>>Tibor Karaszi, SQL Server MVP
>>http://www.karaszi.com/sqlserver/default.asp
>>http://www.solidqualitylearning.com/
>>http://www.sqlug.se/
>>
>>"Rick" <anonymous@.discussions.microsoft.com> wrote in
>> message
>>news:50ea01c52337$f3f09190$a601280a@.phx.gbl...
>> Microsoft or SQL Server does not have such tool woul
be
>> sufficient (Read the question) !!!!!!!!!!!!!
>>
>>--Original Message--
>>Is there any way to find out what is in the Database
log
>>file without using a third party utility (Something
from
>>SQL Server itself or Microsoft) ' Another words,
track
>>the transactions in the log.....
>>Thanks.
>>.
>>
>>.
>
>.
>|||No worries.
Short answer is that SQL Server doesn't come with a log reader tool. There are two commands to
output t-log entries, but they are more or less binary information with which you can't decipher
anything useful. So in other words, if you want to read the log, you need a 3;rd party tool.
--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
http://www.sqlug.se/
"Rick" <anonymous@.discussions.microsoft.com> wrote in message
news:561701c5234d$d0bd5490$a401280a@.phx.gbl...
> Did not want to be rude......Some people have the
> obsession to send people to their web site for
> anything.....I knew that there wasn't a clear-cut
> answer......It is our management getting pressured from
> the security companies and pushing it down to us. The
> problem is that they are cheap enough not to get any third
> party utilities and act like bunch of morons when you
> explain them what is available in SQL Server and what is
> available out there......did not mean to take out of
> you....
> Thanks.
>
>>--Original Message--
>> Your links don't give me anything...
>>Since you asked about reading the transaction log, I
> thought that knowledge about the log reader
>>tools available could be interesting. I've listed three
> such tools in my website, on my links page:
>>http://www.karaszi.com/SQLServer/links.asp
>>I might have been wrong in that assumption...
>>
>> Are you just
>> advertising yourself !!!!!!!!!!!
>>On my website, I have a links page, a number of technical
> articles with tips, gotchas and other
>>technical information, about newsgroups and other stuff.
> I also mention who I am. I leave it up to
>>the reader to determine whether the website has any value
> or only serve as a mean to advertise
>>myself.
>>--
>>Tibor Karaszi, SQL Server MVP
>>http://www.karaszi.com/sqlserver/default.asp
>>http://www.solidqualitylearning.com/
>>http://www.sqlug.se/
>>
>>"Rick" <anonymous@.discussions.microsoft.com> wrote in
> message
>>news:553c01c5233f$bb049a40$a401280a@.phx.gbl...
>> Your links don't give me anything...Are you just
>> advertising yourself !!!!!!!!!!!
>>
>>--Original Message--
>>Relax. You ask a question and get some additional
>> information. How can this make you angry?
>>--
>>Tibor Karaszi, SQL Server MVP
>>http://www.karaszi.com/sqlserver/default.asp
>>http://www.solidqualitylearning.com/
>>http://www.sqlug.se/
>>
>>"Rick" <anonymous@.discussions.microsoft.com> wrote in
>> message
>>news:50ea01c52337$f3f09190$a601280a@.phx.gbl...
>> Microsoft or SQL Server does not have such tool woul
> be
>> sufficient (Read the question) !!!!!!!!!!!!!
>>
>>--Original Message--
>>Is there any way to find out what is in the Database
> log
>>file without using a third party utility (Something
> from
>>SQL Server itself or Microsoft) ' Another words,
> track
>>the transactions in the log.....
>>Thanks.
>>.
>>
>>.
>>
>>.

Log Explorer

Is there any way to find out what is in the Database log
file without using a third party utility (Something from
SQL Server itself or Microsoft) ? Another words, track
the transactions in the log.....
Thanks.
AFAIK, Log Explorer from Lumigent is the only tool capable of doing such
thing...
-Argenis
"Rick" <anonymous@.discussions.microsoft.com> wrote in message
news:53f101c5232a$7c1d9800$a401280a@.phx.gbl...
> Is there any way to find out what is in the Database log
> file without using a third party utility (Something from
> SQL Server itself or Microsoft) ? Another words, track
> the transactions in the log.....
> Thanks.
|||I've listed three such tools on the links page on my web site (see my signature).
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
http://www.sqlug.se/
"Argenis Fernandez" <argenis@.spam.sucks.gmail.com> wrote in message
news:uGJ7qwyIFHA.2648@.TK2MSFTNGP14.phx.gbl...
> AFAIK, Log Explorer from Lumigent is the only tool capable of doing such
> thing...
> -Argenis
> "Rick" <anonymous@.discussions.microsoft.com> wrote in message
> news:53f101c5232a$7c1d9800$a401280a@.phx.gbl...
>
|||And LogPi (www.logpi.com)
Regards
Mike
"Argenis Fernandez" wrote:

> AFAIK, Log Explorer from Lumigent is the only tool capable of doing such
> thing...
> -Argenis
> "Rick" <anonymous@.discussions.microsoft.com> wrote in message
> news:53f101c5232a$7c1d9800$a401280a@.phx.gbl...
>
>

LOG Explorer

Hello there... I had an intrusion into my DB and I'd like to analize
the log looking for the moment and the IP the modification was.

Does anyone know about free software for this?

Thank you.ing.edmundo (ing.edmundo@.gmail.com) writes:

Quote:

Originally Posted by

Hello there... I had an intrusion into my DB and I'd like to analize
the log looking for the moment and the IP the modification was.


I would not expect to find the IP address in the transaction log. After
all, the purpose of the transaction log is make it possible to roll
transactions back or forward.

Quote:

Originally Posted by

Does anyone know about free software for this?


I don't know of any free log readers, but maybe some vendors offer
evaluation copies. The two I know on the top of my head are Log Explorer
from Lumgient (www.lumgient.com) and Log PI (www.logpi.com).

--
Erland Sommarskog, SQL Server MVP, esquel@.sommarskog.se
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/pr...oads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodin...ions/books.mspx|||Log Explorer from Lumgient (www.lumgient.com)

Lumigent (www.lumigent.com)

--
PBsoft di Gabriele Bertolucci
www.pbsoft.it
skype:pbsoftsolution

Log Explorer

Microsoft or SQL Server does not have such tool woul be
sufficient (Read the question) !!!!!!!!!!!!!

>--Original Message--
>Is there any way to find out what is in the Database log
>file without using a third party utility (Something from
>SQL Server itself or Microsoft) ' Another words, track
>the transactions in the log.....
>Thanks.
>.
>Relax. You ask a question and get some additional information. How can this
make you angry?
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
http://www.sqlug.se/
"Rick" <anonymous@.discussions.microsoft.com> wrote in message
news:50ea01c52337$f3f09190$a601280a@.phx.gbl...[vbcol=seagreen]
> Microsoft or SQL Server does not have such tool woul be
> sufficient (Read the question) !!!!!!!!!!!!!
>|||Your links don't give me anything...Are you just
advertising yourself !!!!!!!!!!!

>--Original Message--
>Relax. You ask a question and get some additional
information. How can this make you angry?
>--
>Tibor Karaszi, SQL Server MVP
>http://www.karaszi.com/sqlserver/default.asp
>http://www.solidqualitylearning.com/
>http://www.sqlug.se/
>
>"Rick" <anonymous@.discussions.microsoft.com> wrote in
message
>news:50ea01c52337$f3f09190$a601280a@.phx.gbl...
>
>.
>|||> Your links don't give me anything...
Since you asked about reading the transaction log, I thought that knowledge
about the log reader
tools available could be interesting. I've listed three such tools in my web
site, on my links page:
http://www.karaszi.com/SQLServer/links.asp
I might have been wrong in that assumption...

> Are you just
> advertising yourself !!!!!!!!!!!
On my website, I have a links page, a number of technical articles with tips
, gotchas and other
technical information, about newsgroups and other stuff. I also mention who
I am. I leave it up to
the reader to determine whether the website has any value or only serve as a
mean to advertise
myself.
--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
http://www.sqlug.se/
"Rick" <anonymous@.discussions.microsoft.com> wrote in message
news:553c01c5233f$bb049a40$a401280a@.phx.gbl...[vbcol=seagreen]
> Your links don't give me anything...Are you just
> advertising yourself !!!!!!!!!!!
>
> information. How can this make you angry?
> message|||Did not want to be rude......Some people have the
obsession to send people to their web site for
anything.....I knew that there wasn't a clear-cut
answer......It is our management getting pressured from
the security companies and pushing it down to us. The
problem is that they are cheap enough not to get any third
party utilities and act like bunch of morons when you
explain them what is available in SQL Server and what is
available out there......did not mean to take out of
you....
Thanks.

>--Original Message--
>Since you asked about reading the transaction log, I
thought that knowledge about the log reader
>tools available could be interesting. I've listed three
such tools in my website, on my links page:
>http://www.karaszi.com/SQLServer/links.asp
>I might have been wrong in that assumption...
>
>On my website, I have a links page, a number of technical
articles with tips, gotchas and other
>technical information, about newsgroups and other stuff.
I also mention who I am. I leave it up to
>the reader to determine whether the website has any value
or only serve as a mean to advertise
>myself.
>--
>Tibor Karaszi, SQL Server MVP
>http://www.karaszi.com/sqlserver/default.asp
>http://www.solidqualitylearning.com/
>http://www.sqlug.se/
>
>"Rick" <anonymous@.discussions.microsoft.com> wrote in
message
>news:553c01c5233f$bb049a40$a401280a@.phx.gbl...
be[vbcol=seagreen]
log[vbcol=seagreen]
from[vbcol=seagreen]
track[vbcol=seagreen]
>
>.
>

Log Explorer

Is there any way to find out what is in the Database log
file without using a third party utility (Something from
SQL Server itself or Microsoft) ' Another words, track
the transactions in the log.....
Thanks.AFAIK, Log Explorer from Lumigent is the only tool capable of doing such
thing...
-Argenis
"Rick" <anonymous@.discussions.microsoft.com> wrote in message
news:53f101c5232a$7c1d9800$a401280a@.phx.gbl...
> Is there any way to find out what is in the Database log
> file without using a third party utility (Something from
> SQL Server itself or Microsoft) ' Another words, track
> the transactions in the log.....
> Thanks.|||I've listed three such tools on the links page on my web site (see my signat
ure).
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
http://www.sqlug.se/
"Argenis Fernandez" <argenis@.spam.sucks.gmail.com> wrote in message
news:uGJ7qwyIFHA.2648@.TK2MSFTNGP14.phx.gbl...
> AFAIK, Log Explorer from Lumigent is the only tool capable of doing such
> thing...
> -Argenis
> "Rick" <anonymous@.discussions.microsoft.com> wrote in message
> news:53f101c5232a$7c1d9800$a401280a@.phx.gbl...
>|||And LogPi (www.logpi.com)
Regards
Mike
"Argenis Fernandez" wrote:

> AFAIK, Log Explorer from Lumigent is the only tool capable of doing such
> thing...
> -Argenis
> "Rick" <anonymous@.discussions.microsoft.com> wrote in message
> news:53f101c5232a$7c1d9800$a401280a@.phx.gbl...
>
>