Viewing 15 posts - 4,201 through 4,215 (of 7,502 total)
Paresh Randeria (1/5/2009)
If not than do we have any better alternatives?
I am working on Datawarehouse application where previous DAY...
January 5, 2009 at 4:27 am
Gail explained the basics very well at http://www.sqlservercentral.com/articles/64582/
btw you need to take log-backups to clean up the log files content !
If you don't, they will be growing on and...
January 5, 2009 at 4:17 am
Check out http://www.sqlservercentral.com/articles/Administration/2960/
it refers to http://support.microsoft.com/default.aspx/kb/954606
MS08-052: Description of the security update for GDI+ for SQL Server 2005 Service Pack 2 GDR: September 9, 2008
January 5, 2009 at 4:11 am
I've recently advised to create a number-bucket table for this kind of stuff.
Preparing a series of numbers for a key-identifier (i.e.customer in your case) and marking it 'free/taken'.
providing a sproc/function...
January 2, 2009 at 2:46 pm
- did you try starting the instance using:
net start mssql$sqlexpress
- did you find the info a the folder I pointed to in an earlier reply ?
January 2, 2009 at 10:19 am
- 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
Viewing 15 posts - 4,201 through 4,215 (of 7,502 total)