Viewing 15 posts - 3,001 through 3,015 (of 7,429 total)
Ahh, but that's the thing, none of the usual SPs or INFORMATION_SCHEMA items report an incorrect size. And none of the usuall DBCC items report any issues.
May 12, 2003 at 3:59 am
Also, some Events do not seem to work against the filters so you will get anything that happens.
May 12, 2003 at 3:00 am
If the column name is the same for all tables then
EXEC sp_msforeachtable 'delete * from
where ulame=''sqldummy'''
will do it.
But be carefull not to accidently delete stuff...
May 9, 2003 at 12:04 pm
This is interesting, looks like there is a hidden piece to allocations.
May 9, 2003 at 4:46 am
This forums thread should be of help
May 9, 2003 at 4:34 am
I am pretty srue there is a proper conversion however I cannot seem to find it right off. But here is a way that will work
DECLARE @s-2 as VARCHAR(2)
SET @s-2...
May 9, 2003 at 4:14 am
Also, have you checked the load on the server to see how bad it may be. If you have a bottlenecked system you may see timeouts on any complicate query...
May 9, 2003 at 4:01 am
I believe you are thinking of rthe /3GB siwtch vambati which should not be needed here.
Pomalis, oes the OS see the 2GBs and has the machien been pushed to see...
May 9, 2003 at 3:59 am
Look for the sql.log file in the temp directory. The install writes out a lot of information to it's logfile and the answer may be in there.
May 9, 2003 at 3:55 am
There is an article out on the MS KB site (sorry don't have the number) about losing the Server Registrations in EM on XP with regards to the same machine....
May 9, 2003 at 3:52 am
MarkusB is right. Just remember to attach using sp_attach_single_file_db to accomplish without an LDF. Also, make sure the version is compatible 7 or 2000 for 2000 but only 7 with...
May 9, 2003 at 3:49 am
There have also been folks and an article (sorry don't remember the number) where File and Print sharing had to be enabled to get the install to complete. Check on...
May 9, 2003 at 3:46 am
You can also audit your logins with either Profiler to capture connections or if you right click the Server in question in EM and choose properties you will find Audit...
May 9, 2003 at 3:44 am
If you use
SET SHOWPLAN_TEXT ON
GO
the your query, you will get a text version of the execution plan which you can print out.
May 9, 2003 at 3:41 am
When you say you see these, where do you mean you see this? Each is a demonstrative Alert to provide examples of Serverity based alerts but if your server is...
May 9, 2003 at 3:39 am
Viewing 15 posts - 3,001 through 3,015 (of 7,429 total)