Viewing 15 posts - 121 through 135 (of 206 total)
You want to avoid growth in % for other reasons as well. When the db is small, say 50 MB, a 10% growth is minor. AS our newbie has discovered...
March 6, 2008 at 4:13 pm
arun.samuel (3/6/2008)
appreciated.
I have a 3 tables :
1. tblCaseInfo with CaseID, ResolutionID
2. tblSessions with CaseID, Location
3....
March 6, 2008 at 8:49 am
Adam, when I encountered this problem it was not oprhaned users. We had been on SQL 2005 for 6 months when the problem arose. I wound up contacting MIcrosoft PSS...
March 6, 2008 at 8:45 am
You can run a profiler trace for a given period of time. The trace will include reads and writes and this data can be exported to a database. Be careful...
March 5, 2008 at 5:42 pm
I ran into this issue too after upgrading to 2005 and then applying Windows SP2. It turns out that doing so enabled the "Enforce Password Policy" and other checkboxes. Check...
March 5, 2008 at 5:34 pm
Yes, Coriolan, you can use the SET ROWCOUNT n to limit the rows returned. However, what you really need is some sort of paging similar to MySQL's limit function and...
March 5, 2008 at 5:29 pm
1) Never perform maintenance (such as shrinking log files) during production hours.
That said, if you were shrinking the log file when SQL Server restarted you are most likely encountering a...
March 5, 2008 at 3:51 pm
Jeff, I didn't mean to step on your toes and indicate that either of these scripts were different. I was speaking in general terms to let our Newbie know that...
March 5, 2008 at 3:14 pm
fvandenbosch (3/5/2008)
Thanks all!Being a newbie at this I stand to learn something from each of your replies. No surprise that there are several ways to accomplish the task.
You are...
March 5, 2008 at 2:09 pm
Without using a CTE this can be accomplished with the following...
select uniqueID from t1 join
( select SN, max(RevisionNUmber) rn from group by SN ) v on
v.SN...
March 5, 2008 at 1:14 pm
You can do this without a case statement. Try this...
Where
isnull( a.director, 1) = 1 or a.director = b.director
March 5, 2008 at 8:43 am
Chris, look at replication in Books Online
Dab
March 3, 2008 at 7:13 pm
Yuri, why is the page file only set at 4 GB?
It seems as though the OS is starved for memory at times (causing the 100% spikes). SQL may only be...
March 3, 2008 at 6:54 pm
Sram, your best bet is to use some sort of load process (SSIS, openquery(), MySQLdump, etc. ). In conjuntion with the MySQL 3.51 conncetor http://dev.mysql.com/downloads/connector/odbc/3.51.html[/] you can use openquery() to...
February 22, 2008 at 7:28 am
Viewing 15 posts - 121 through 135 (of 206 total)