Viewing 15 posts - 4,006 through 4,020 (of 7,503 total)
Jeff Moden has written a couple of great articles on this topic:
e.g. http://www.sqlservercentral.com/articles/Advanced+Querying/61716/
February 17, 2009 at 8:12 am
it is a common design issue to just use nullable columns !
DocDesc nvarchar(50), null
Filename nvarchar(25), null
Filepath nvarchar(100), null
InsertDate datetime, null
UpdateDate datetime, null
FK LangID smallint, null
Avoid the...
February 17, 2009 at 7:47 am
As Steve stated, it is the sqlserver service account that needs to be granted write access to the path that you want the backup to be written to.
If you are...
February 17, 2009 at 12:24 am
Books online states these restrictions:
Restrictions
Because the DAC exists solely for diagnosing server problems in rare
circumstances, there are some restrictions on the connection:
To guarantee that there are resources available for...
February 17, 2009 at 12:15 am
In stead of doing the delete... try out your re-load scenario using:
truncate table yourtable
This is the fastesd way of emptying a table and it will reuse the space.
Regarding the log...
February 17, 2009 at 12:03 am
did you address the ldf file using UNC ??
Pointing to a remote disk or fileshare ??
February 16, 2009 at 11:55 pm
it states
Check and correct error conditions such as insufficient disk space, and then restart the SQL server.
the such as is the tricky part overhere.
I would start perfmon and check...
February 16, 2009 at 11:48 pm
Good advise Ken Garrett ! 😎
Apart from solving the 4Gb problem, the real question should be ..;
Is it considered normal that a single table can consume 2Gb in a size...
February 16, 2009 at 10:57 am
isn't it stating a location for the log files it searches ?
Can you post the results of sp_helpdb 'yourdb'
February 16, 2009 at 10:47 am
Which is the location sqlserver is trying to write the audit trace file to ?
By default that would be the sqlserver instance \log folder (where you can also find errorlog,...
February 16, 2009 at 10:41 am
Ol'SureHand (2/15/2009)
Data warehousing practitioners seem to have a constraint on EVERY single column. The above code will only preserve necessary constraints,...
February 16, 2009 at 12:24 am
Back in the days we used to use this before restoring an EUC database:
CREATE PROCEDURE sp_DB_SendAndKill
@database char(25),
@contact varchar(100) ,
@reden varchar(300) = ' ** reden werd niet opgegeven **...
February 15, 2009 at 10:06 am
Did you try to use "net send" to the windows users or workstation ids ?
However, in some shops they shut of this service.
Or you could query AD to fetch the...
February 15, 2009 at 1:49 am
Did you our SQL Server Configuration Manager to perform the service account change ?
if not... change it back the way you did and then use SCM to configure the...
February 14, 2009 at 11:11 am
I don't think the view designer shows up in the connection info of the spid.
So I guess you cannot restrict its usage.
February 13, 2009 at 12:52 pm
Viewing 15 posts - 4,006 through 4,020 (of 7,503 total)