Viewing 15 posts - 26,026 through 26,040 (of 26,490 total)
Jeff,.
I will have to go with the later statement regarding the co-worker. The application for which the SQL Server is dedicated to is a 3rd party app. Yes, at times...
May 1, 2007 at 6:01 am
A little honesty, I'm not the one the one at our shop doing this. One of my coworkers claims that it takes 4 to 6 hours daily to monitor one...
April 30, 2007 at 8:25 pm
SQL only ignores the ORDER BY if you specify TOP 100 PERCENT. If your query specified TOP 10 PERCENT (or any value less the 100), the ORDER BY is honored.
April 30, 2007 at 2:53 pm
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
Viewing 15 posts - 26,026 through 26,040 (of 26,490 total)