Viewing 15 posts - 1,876 through 1,890 (of 2,436 total)
could you post your query and results ? Also, add the following just above your query:
select db_name()
go
September 28, 2005 at 3:18 pm
Here's a start:
BOL - Index Tab - Estimating table size and allocating pages
Some of the actual page structure stuff I have to dig for. If I remember it was in...
September 28, 2005 at 3:13 pm
Where the column is in the table creation DDL are located visually really does not matter. The columns for the actual row itself are stored in the following (very over-simplified format):
September 28, 2005 at 2:34 pm
I manage 22+ servers ... I scan the errorlogs every 30 minutes for activity and email it to myself. I've found it useful to 'filter out' certain things like:
'%Database...
September 28, 2005 at 2:05 pm
SET WAY_BACK_MACHINE ON
Time for ISO-9000, ISO-9001 audits.
SET WAY_BACK_MACHINE OFF
September 28, 2005 at 1:36 pm
The command is actually:
sp_configure 'allow updates',1 --> allow catalog updates
sp_configure 'allow updates',0 --> dis-allow catalog updates
There is also another 'nasty' side affect of this ... any stored procedure...
September 28, 2005 at 1:11 pm
Just a silly question ... are you now going to start practicing the 'religious rites' of 'backup' ?
September 28, 2005 at 11:42 am
has anyone noticed the 'dip' in the world SQL Server knowledge base (since this thread started) ...
September 28, 2005 at 10:05 am
Glad to be able to help. Have a great day !
September 27, 2005 at 1:47 pm
Here's a handy reference: http://www.connectionstrings.com
September 27, 2005 at 10:02 am
DBCC SHRINKFILE can be executed even while a database is in 'full recovery' mode. The command will only 'shrink' the inactive portion of the log file. However it might not...
September 27, 2005 at 9:42 am
Just a quick thought on 'encryption' ... there are lot's of 'freebies' on the web for 'decryption' and a few 'pay for' packages as well. In SQL 2000 encryption is...
September 26, 2005 at 4:02 pm
What account(s) are running the SQL Server Service and the SQL Agent Service ? Are they LocalSystem ? Local COMputer accounts ? Domain User Accounts ?
Where is you backup target ?...
September 26, 2005 at 11:36 am
I think a quick read of a section of BOL (Books Online) may be in order here.
Contents tab
Administering SQL Server
Backing Up and Restoring Databases
September 26, 2005 at 11:28 am
If your site uses SMS then almost everything you need is present 'out of the box' from a windows perspective on both the client and server side if the admins...
September 23, 2005 at 1:35 pm
Viewing 15 posts - 1,876 through 1,890 (of 2,436 total)