Viewing 15 posts - 1 through 15 (of 34 total)
For MS SQL 2000 I see at lest two ways of doing that:
1 - Put those tables on READ-ONLY filegroup;
2 - Put that login indo db_denydatawriter fixed database role;
Check BOL...
January 20, 2005 at 8:40 pm
You could try this (of course, some limitations apply):
Create table dates( date datetime)
insert into dates values('2005-01-01')
insert into dates...
January 17, 2005 at 11:12 am
Karen,
If your new server is Windows 2003 this article might help you
http://support.microsoft.com/default.aspx?scid=kb;en-us;827452.
But it does not anything about 3GB file size limit.
Igor
September 17, 2004 at 9:28 am
As workaround and only as workaround you can analyze program_name column in sysprocesses table.
Run
select program_name
from sysprocesses
where spid = @@spID
You could check it in your triggers and if program_name =...
September 7, 2004 at 12:59 pm
Thanks for the update, Aaron.
It's useful to know about another undocumented trace flag.
Igor
September 7, 2004 at 11:48 am
Thanks for the update, Aaron.
It's useful to know about another undocumented trace flag.
Igor
September 7, 2004 at 11:37 am
Applying the log will not simulate the load, but you can create a trace file
using SQL Profiler and then replay it in test.
Igor
August 30, 2004 at 6:46 pm
Or you could try this:
Create Procedure RecCount (@Table sysname ) As
SELECT si.rowcnt
FROM sysindexes si
INNER JOIN sysobjects so on si.id=so.id AND si.indid IN (1,0)
WHERE so.name = @Table
Igor
August 20, 2004 at 2:49 pm
If you are using SQL 2K and performance is not an issue,
you can do this:
SELECT *, SortColumn = Cast(b as sql_variant)
FROM Table1
ORDER BY SortColumn
Igor
August 5, 2004 at 2:13 pm
Do you have 'Auto Shrink' option enabled by any chance?
Can you restore (on the test server) your 14.7 GB backup and tell size of data and log files.
Igor
August 1, 2004 at 7:53 pm
How about DBCC OPENTRAN ?
Check "Long-Running Transactions" topic in BOL.
Igor
July 31, 2004 at 8:54 am
Well, when Microsoft recommends something - you better stick with it.
July 30, 2004 at 12:17 pm
What is recovery model for your database?
Does your application do any bulk-logged operations?
July 29, 2004 at 9:48 am
Another possibility is that your server cached ‘slow’ execution plan and keeps reuse it.
If you can find a query that...
July 27, 2004 at 10:43 am
"awe enabled is an advanced option. If you are using the sp_configure system stored procedure to change the setting, you can change awe enabled only when show advanced options is...
July 26, 2004 at 1:47 pm
Viewing 15 posts - 1 through 15 (of 34 total)