Hi, is there someone out there who can help me select multiple records that were entered/updated on different tables on the same time in the SQL Server database. Do you think this is possible or not?
Your help is highly appreciated, thanks!
Hi, is there someone out there who can help me select multiple records that were entered/updated on different tables on the same time in the SQL Server database. Do you think this is possible or not?
Your help is highly appreciated, thanks!
Does your table have a date/time-stamp column of type DATETIME??
Otherwise you're probably out of luck....
Marc
Hm... could it be something as simple as
SELECT *
FROM MyTable
WHERE CreatedDate = 'the date you are interested in'
or
SELECT *
FROM MyTable
GROUP BY CreatedDate
HAVING COUNT(*) > 1
?
if you are inside the insert trigger, you can query the inserted
pseudo-table.
If the DATETIME columns are all named the same, you can generate the queries like
select
'select * from '
+ t.name
+ ' where UpdateDate = ''2009-05-01''' as SelectStatement
from sys.tables as t
Or if the DATETIME column name is not static, you can do something along these lines:
select
'select * from ' + t.name
+ ' where ' + c.name + ' = ''2009-05-01''' as SelectStatement
from sys.tables as t join sys.columns as c on t.object_id=c.object_id
where c.system_type_id = (select system_type_id from sys.types where name = 'datetime')