Viewing 15 posts - 4,201 through 4,215 (of 7,496 total)
- do you have "torn page detection" set to ON for all databases ?
- do you perform dbcc checkdatabase on a regular basis ?
January 2, 2009 at 10:17 am
- try making your account member of the local windows administrators group. That may get you sysadmin rights for SQLServer.
- Take a full backup of all database(s).
- Isn't there something...
January 2, 2009 at 10:07 am
Jeff Moden (1/1/2009)
My feeling is that you've...
January 2, 2009 at 3:40 am
first read: http://www.sommarskog.se/dynamic_sql.html
Then : this is certainly not a best practice !
Create proper sprocs that serve exactly what they should.
Any "dynamic" part will come to a price.
... but I have...
January 1, 2009 at 12:54 pm
No problem.
Keep us updated 😉
Happy 2009
December 31, 2008 at 9:06 am
We told you partitioning was a advanced topic.
You must read the mentioned white papers to get the actual details why and when you need to include the partitioning column !
It...
December 31, 2008 at 6:18 am
Hooman Shamsborhan (12/30/2008)
[font="Verdana"]...
--This is the part that causes problem
ALTER TABLE [dbo].[Transaction_Summary_2] ADD CONSTRAINT [PK_Transaction_Summary_2] PRIMARY KEY CLUSTERED
(
[Transaction_Serial_No] ASC
) ON [Data5] --ON TranactionSummary_Schema(Channel)
--to here
....
[/font]
If you create all indexes without...
December 30, 2008 at 5:34 am
and you did shut it down by hitting ctrl+C in the cmdbox where you started it.
2008-12-28 20:37:46.09 spid7s SQL Server shutdown due to Ctrl-C or...
December 29, 2008 at 3:31 am
GilaMonster (12/28/2008)
ALZDBA (12/28/2008)
Try to export the data without these column, so you only lose the text/image stuff if...
December 28, 2008 at 1:41 pm
it has troubles opening your AdventureWorks2008 database.
check your errorlog for e.g.:
2008-12-27 12:03:02.56 spid41s Starting up database 'AdventureWorks2008'.
I would try to get it back up and running...
December 28, 2008 at 1:33 pm
I'll see what I can do ...
I'm not that the office until Jan 5th ...
December 28, 2008 at 9:16 am
- Did you follow best practices by taking a backup before you moved the datafiles ??
- if you did perform a clean shutdown and there weren't any ongoing transactions, you...
December 28, 2008 at 9:02 am
- you should check "c:\program files\microsoft sqlserver 2005\"
there should be a mssql.1 folder, that one contains a file called "errorlog" if you post its content, we may be able to...
December 28, 2008 at 8:54 am
How to: Rename a Computer that Hosts a Stand-Alone Instance of SQL Server 2005:
- http://msdn.microsoft.com/en-us/library/ms143799(SQL.90).aspx
December 28, 2008 at 8:47 am
also keep in mind you need to enable TCP/IP on your sqlserver instance (server configuration manager) and restart the sqlinstance for it to be able to allow connections over tcp/ip
December 28, 2008 at 8:43 am
Viewing 15 posts - 4,201 through 4,215 (of 7,496 total)