Viewing 15 posts - 4,951 through 4,965 (of 6,400 total)
the log column of sysjobstepslog is nvarchar(max) so can hold up to 2gb of data, so should be more than enough when logging to the table.
May 23, 2012 at 8:31 am
there is no way to audit people adding people to groups as thats outside of SQL, what you could do is run xp_logininfo on the group at regular times and...
May 23, 2012 at 8:30 am
well you will need two variable then one for the lower value in the range and one for @FromDate
Something like @FromDate date, @ToDate date where @FromDate = 2012-05-01 or 2012-05-15...
May 23, 2012 at 8:23 am
Two things I can think of,
1 - have a secondary job which is fired from the completion of Job 1, which pulls the information from the sysjobstepslogs table and runs...
May 23, 2012 at 8:19 am
crookj (5/23/2012)
eccentricDBA (5/23/2012)
crookj (5/23/2012)
Ray K (5/23/2012)
Daniel Bowlin (5/23/2012)
L' Eomot Inversé (5/23/2012)
SQLRNNR (5/22/2012)
slotmachine
one armed bandit
Blackjack
Texas Hold Em
Horseshoe Casino Cleveland
Double Eagle Cripple Creek
engelbert humperdinck
May 23, 2012 at 8:03 am
Ray K (5/23/2012)
Daniel Bowlin (5/23/2012)
L' Eomot Inversé (5/23/2012)
SQLRNNR (5/22/2012)
slotmachine
one armed bandit
Blackjack
Fruit Salad
May 23, 2012 at 7:52 am
Your going to have to build in some code which does a check on @FromDate and change the value to the right one for the date range it is in,...
May 23, 2012 at 7:40 am
No you didnt set it up wrong, its just you said to constaintly backup to the same file so it keeps adding each TX Log backup to the same file...
May 23, 2012 at 7:21 am
actually after remembering, you need to use the INIT command as well, which will allow the media set to be overwritten so it will mess up your PIT Restores.
your best...
May 23, 2012 at 7:03 am
Personally I would ask the company you recieve the files from for a copy or details of the schema which they export from, so that you can get an exact...
May 23, 2012 at 6:27 am
Yes, and might take some time depending on how many logical files are within the physical file
May 23, 2012 at 6:08 am
Your confusing the TRN and LDF, they are NOT the same thing
TRN = Transaction Log BACKUP
LDF = Transaction Log
How big is the LDF file for the Production database? ...
May 23, 2012 at 5:56 am
Just need to add the convert to the end of the dataadd/difs
SELECT CONVERT(VARCHAR,DATEADD(dd,DATEDIFF(dd,0,DATEADD(MONTH,-13,GETDATE())),0),101)
May 23, 2012 at 5:45 am
.TRN usually means its a transaction log backup file, not the actual log file used in the database, this has the file extension .LDF.
If every log backup is running the...
May 23, 2012 at 5:31 am
such a broad topic, there are plenty of good articles buy doing a search in a search engine of your choice, but if you have something specific, please follow the...
May 23, 2012 at 2:45 am
Viewing 15 posts - 4,951 through 4,965 (of 6,400 total)