Forum Replies Created

Viewing 15 posts - 376 through 390 (of 461 total)

  • RE: Slow query on partitioned view

    What is the type of your SQL Server? Only the Enerprise version allows the use of partinioned views.

    Also did you implement the check constraint on the partitioning column on each...

  • RE: Convert data

    Here is what you want:

    select convert(varchar, convert(datetime, '26/08/2003', 103), 1)

    select convert(varchar, convert(datetime, '26/08/2003', 103), 1) + ' 10:00'

    Bye

    Gabor

  • RE: database generation script

    Hi Nicolas,

    What I would do is generate the DDL script with EM including create database.

    That one you can run on the client server.

    After you can BCP out all the data...

  • RE: dll files on SQL server

    the xplog70.dll is also responsible for the xp_cmdshell

  • RE: CPU usage 100% for most of the time.

    Did you check the cpu and the physical_io columns in the sysprocess table?

    Also did you check if you have enough memory to handle SQLServer as well as the OS (and...

  • RE: excel sheet

    Frank,

    You may have a German keyboard!

    On a "normal" keyboard STRG calls CTRL

    (Control anstatt Steuerung)

  • RE: virusscan ?

    Or you do not have to put any NT shares on the machine, no "active work" on it (i.e. it should not work as a workstation) and of cours heavy...

  • RE: How to move Transaction Logs(.LDF) and Temp files

    And for the transaction logs (which is at least one er database) the best was is detach the DB move your files whereever you want and after attach it again.

    It...

  • RE: Reindexing the system tables

    But Frank,

    THIS IS A PRODUCTIVE DATABASE WHERE OVER 1000 PEOPLE ARE CONNECTED TO!!!

    I won't play with rebuilding the master database within my maintenance windows.

    It's is just too risky to do...

  • RE: top 10 zipcodes

    I'm not really proud of that solution because I don't like cursors but at least it works .

    Here is an example based on the pubs database:

    declare@t_au_ord table...

  • RE: Tools to calculate db size

    Frank,

    What do you meen by estimating the db size?

    Size of the existing or a planned db?

    Because (and of cours you now it) you can use sp_spaceused, hp_helpdb,...

  • RE: How to do logMiner in SQL Server

    What about Log Explorer for SQL Server from Lumigent? www.lumigent.com.

    They are doing selective data recovery as well.

    But I don't know how much it will cost.

    Gabor

  • RE: Reindexing the system tables

    Of cours I did.

    See my previous notes.

    sp_fixindex is doing dbcc dbreindex for all objects where object_id > 100 and dbcc dbrepair for all objects where object_id < 100.

    And there I...

  • RE: BCP within Delphi

    I think I will use C for this time. I just hate mixing up development languages.

    The app. will run each morning in the login script each file has between 20...

  • RE: Reindexing the system tables

    So guys (special thanks to Frank and Tom),

    It seems there is no real answer.

    By the way Frank ich habe dein Mail erhalten. Danke)

    The story concerning sp_fixindex...

Viewing 15 posts - 376 through 390 (of 461 total)