Viewing 15 posts - 39,691 through 39,705 (of 49,571 total)
Set them all to whatever the default is (Books online should tell you that)
From SQL 2000 onwards you should just be using the recovery models (full, bulk logged and simple)...
April 18, 2009 at 2:23 am
Ignore that setting and don't mess with it. It's there only for backward compatibility (SQL 7 and earlier I think), it is deprecated, it will be removed in future versions.
April 17, 2009 at 2:36 pm
I would suggest that you buy the Self-paced training kit from MS Press. It's quite a good coverage of the exam topics.
April 17, 2009 at 2:28 pm
Wish (4/17/2009)
You said that cursor is working iteratively, My Question is that table variable is also works on iteration
Table variables work on iteration?
April 17, 2009 at 2:09 pm
Wrong place.
I'm talking about the windows accounts that the two services run as. First you need to find out what they are, check the services app from Administrative tools....
April 17, 2009 at 2:08 pm
Permissions?
Running through BI dev studio it'll be running under your credentials. Running as a SQL job it will be running either as the SQL Server service account or the...
April 17, 2009 at 12:19 pm
You should have a reasonable amount of experience with the product before writing the cert exam. If you have not worked on 2008 you will struggle with the 2008 exams....
April 17, 2009 at 12:14 pm
Winter's coming early here. It's already nippy enough in the evenings to require a jacket. That doesn't normally happen til May.
April 17, 2009 at 11:49 am
select d.name as DatabaseName, mf.name as FileLogicalName, mf.physical_name, type_desc, max_size
from sys.master_files mf inner join sys.databases d on d.database_id = mf.database_id
Any files with a max size of -1 are set...
April 17, 2009 at 11:30 am
Please post table definitions. Read this to see the best way to post this to get quick responses.
http://www.sqlservercentral.com/articles/Best+Practices/61537/
Is this for SQL 2000, 2005 or 2008? If 2005 or higher, look...
April 17, 2009 at 9:35 am
Steve Jones - Editor (4/17/2009)
Personally I don't answer questions in email at all. They need to post it somewhere.
Agreed, and that's the only reason I want to reply. I just...
April 17, 2009 at 9:24 am
Providing the log hasn't been backed up or truncated since the delete.
April 17, 2009 at 7:03 am
Same data volume?
Same indexes?
Same statistics?
Same execution plan?
Same number of concurrent users?
April 17, 2009 at 6:31 am
Unlikely. The default trace has a minimum of events. I don't believe that the DML events are among them. It would be just too much activity for what's supposed to...
April 17, 2009 at 5:32 am
Viewing 15 posts - 39,691 through 39,705 (of 49,571 total)