Viewing 15 posts - 26,026 through 26,040 (of 26,487 total)
But would you watch it for hours every day?
April 30, 2007 at 2:43 pm
Here is a hint: You will need to join sysjobs and sysjobhistory to identify the job you you are looking for by name (Audit). You want to loop as long...
April 30, 2007 at 2:37 pm
If you are doing the Full Backup in place of the Transaction Log Backup, that is why your 7:00 Transaction Log is bigger. The Full Backup does not truncate the...
April 27, 2007 at 8:07 pm
Try this and see if you can use it. It should take care of when the procedure is used heavily, but I'll leave that to someone else to prove or...
April 27, 2007 at 5:39 pm
If it is grow so fast, it must mean there is a significant amount of transaction processing (inserts/updates/deletes). How often to you run transaction log backups during the day? If...
April 27, 2007 at 4:55 pm
Curious, why are you storing dates as strings instead of as dates?
April 27, 2007 at 2:28 pm
The field you are going to that you want formatted mmddyyyy, is this a date field or a character field?
April 27, 2007 at 1:10 pm
SELECT
@sql1 = ' UPDATE CASE_NUM_SEQ' +
' SET CURRVALUE = CURRVALUE+INCR WHERE SEQ_CD = '
April 27, 2007 at 1:07 pm
Instead of Database_Date or DT_DATE try using DT_DBTIMESTAMP.
April 27, 2007 at 11:58 am
Build a view over the table and access the table from your program through the view.
April 27, 2007 at 9:52 am
Peter, That is why I told him to convert the values passed to float in my second post on the subject. However, the values he would get would not match...
April 26, 2007 at 2:50 pm
I have seen this on tables with small row counts. What you don't tell us is how many records in the table, how big is each record, and what is...
April 26, 2007 at 2:42 pm
As has been explained in the several other threads you have posted, all that msdb.dbo.sp_start_job does is start a job. It returns...
April 26, 2007 at 1:33 pm
I would use dynamic sql. Build the approriate sql statement(s) as need based on the version of SQL Server that is being used, then execute that script using exec or...
April 26, 2007 at 10:59 am
Viewing 15 posts - 26,026 through 26,040 (of 26,487 total)