Viewing 15 posts - 136 through 150 (of 769 total)
Eirikur Eiriksson (9/11/2015)
Have a look at Aaron Bertrand's article Script to create dynamic PIVOT queries in SQL Server[/url]😎
I believe this is EXACTLY what I was looking for. It covers...
September 11, 2015 at 9:18 am
CONCLUSION:
It appears the choice to use SQL CE was a design decision and not a design requirement. The Backup/Restore History that is retained by SQL CE on each SQL...
May 5, 2015 at 2:41 pm
Thanks Collin for taking the time to explain this. I have received some additional clarifying information about this from RedGate's support dept. I've actually re-typed this several times because...
May 5, 2015 at 1:51 pm
Thanks for replying. We tried an AFTER TRIGGER and while this works to ensure that the DateCreated and DateModified are set accordingly and this has resulted in another issue....
April 16, 2015 at 2:10 pm
SO is this the kind of question that is so blaringly obvious that no one wants to answer or is it something unheard of? Just trying to figure out...
February 25, 2015 at 2:07 pm
Mike Good (8/13/2014)
these first....
October 7, 2014 at 11:20 am
Lowell (9/18/2014)
September 18, 2014 at 3:57 pm
Thomas Abraham (9/17/2014)
September 17, 2014 at 12:35 pm
YSLGuru (3/4/2014)
Luis Cazares (2/26/2014)
Are you looking for something like this?
ORDER BY MAX(DateUsed) OVER(PARTITION BY ObjectName, UserName)
I believe thats exactly it. Thanks Luis!
Looks like I spoke to soon as thats...
March 4, 2014 at 4:28 pm
Luis Cazares (2/26/2014)
Are you looking for something like this?
ORDER BY MAX(DateUsed) OVER(PARTITION BY ObjectName, UserName)
I believe thats exactly it. Thanks Luis!
March 4, 2014 at 2:40 pm
MM,
I am capturing the WHO (From the SQL Login whcih is unique to every user) , the WHEN (GetDate() ) and whether or not it was creation of new data,...
February 18, 2014 at 3:14 pm
Michael,
Using a sepearte trigger just may be the answer in the end. I've kept all the logic in on etrigger in hopes of keeping the code to a single...
February 18, 2014 at 3:09 pm
Sean,
The difference in the JOINS was a typo on my part. It should have read :
CREATE TRIGGER [dbo].[MAYTABLE_A_IUD_WD] ON [dbo].[MYTABLE] AFTER INSERT, UPDATE, DELETE
AS
BEGIN
...
February 18, 2014 at 3:08 pm
Lowel,
Thanks for the script.
February 18, 2014 at 2:51 pm
Lowell,
At least I've learned something new today even of it hasn't hepled with my problem; how to prevent this domain user from updating data in any table without banning access...
February 14, 2014 at 1:59 pm
Viewing 15 posts - 136 through 150 (of 769 total)