Forum Replies Created

Viewing 15 posts - 4,006 through 4,020 (of 7,503 total)

  • RE: Best way to calculate duration from 1 table?

    Jeff Moden has written a couple of great articles on this topic:

    e.g. http://www.sqlservercentral.com/articles/Advanced+Querying/61716/

  • RE: Inserting into tables with foreign key constraints

    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...

  • RE: Howto: Backup from remote server and store file on local drive?

    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...

  • RE: DAC issue

    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...

  • RE: database size more than 4 GB

    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...

  • RE: Database not starting because of missing ldf

    did you address the ldf file using UNC ??

    Pointing to a remote disk or fileshare ??

  • RE: SQL Server is shutting down

    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...

  • RE: database size more than 4 GB

    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...

  • RE: Database not starting because of missing ldf

    isn't it stating a location for the log files it searches ?

    Can you post the results of sp_helpdb 'yourdb'

  • RE: SQL Server is shutting down

    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,...

  • RE: Automate Default Constraints

    Ol'SureHand (2/15/2009)


    Hope this question does not need its own thread ...

    Data warehousing practitioners seem to have a constraint on EVERY single column. The above code will only preserve necessary constraints,...

  • RE: alerting

    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 **...

  • RE: alerting

    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...

  • RE: Database not starting because of missing ldf

    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...

  • RE: View Designer in Management Studio

    I don't think the view designer shows up in the connection info of the spid.

    So I guess you cannot restrict its usage.

Viewing 15 posts - 4,006 through 4,020 (of 7,503 total)