Viewing 5 posts - 1 through 5 (of 5 total)
Select DATENAME(weekday, YourDateHere)
December 29, 2008 at 3:27 pm
SELECT master.id, master.field1, child.field1
FROM master Left outer JOIN child on master.id = child.masterID
December 29, 2008 at 10:28 am
Did you try creating a definition table for different statuses such as pending , approved etc. You can have timestamp and userID which will help with query performance. May be...
October 17, 2008 at 8:39 am
Declare @nameoftable varchar(50)
set @nameoftable = 'your Table here'
Select *
from Sys.Columns C Inner join Sys.objects O
C.object_id = O.object_id
where O.name = @nameoftable)
October 17, 2008 at 8:26 am
We had a similar situation for not too big of a database and not too many changes.
We created a table to record the changes to the original table. The triggers...
October 17, 2008 at 6:58 am
Viewing 5 posts - 1 through 5 (of 5 total)