Forum Replies Created

Viewing 15 posts - 121 through 135 (of 335 total)

  • RE: Question!!

    As Wilferd suggested, mirroring will be a best option ...

    That's not what I mentioned, I don't know your recovery strategy of Service Level Agreements.

    Wilfred
    The best things in life are the simple things

  • RE: Which is Better ???

    I would say writing is slower compared to reading and reading is slower compared to CPU usage, but ...

    - Could you provide the statements?

    - If this query is doing the...

    Wilfred
    The best things in life are the simple things

  • RE: Extracting data from sql server

    I don't have a clear answer to your question ("It depends" :D:D ), but you can use tools like

    - BCP (Bulk copy program)

    - SSIS package

    - T-SQL statements

    - Buy a third-party...

    Wilfred
    The best things in life are the simple things

  • RE: Recover database with only .LDF file

    Not possible.

    In the .LDF file you see transactions like: (simplified version)

    1) update customer set address='4th Avenue' where custid = 235235

    2) insert into contract values(1,"johnson",$1000000)

    3) delete from salesrep where salesrepid=26

    4) create...

    Wilfred
    The best things in life are the simple things

  • RE: Question!!

    If load balancing is spreading your users over more servers, that's not possible with MSSQL (Buy Oracle RAC in that case, but you'll have to win the lottery first ;)...

    Wilfred
    The best things in life are the simple things

  • RE: Recover database with only .LDF file

    The .LDF file contains transactions, not the data. The data is in the .MDF and .NDF file.

    Wilfred
    The best things in life are the simple things

  • RE: Handling disk space issue for primary datafile .mdf

    - make sure you'll be notified in an early stage

    - so monitor your database and server (or let your windows guys monitor this server)

    - review this disk, remove unnecessary programs,...

    Wilfred
    The best things in life are the simple things

  • RE: Unusual Query Discrepency

    Are you saying the data is the same, but mixed? Or is it totally different data?

    Have you looked at the execution plan?

    If the data is the same but in a...

    Wilfred
    The best things in life are the simple things

  • RE: Anyone know how to search all databases on a server for a specific table name

    No, If you use sp_msforeachdb, the questionmark will be replaced by the databasename (by MSSQL). What you can do is create a cursor for each existing database, like this:

    declare c_db...

    Wilfred
    The best things in life are the simple things

  • RE: Anyone know how to search all databases on a server for a specific table name

    sp_msforeachdb 'select ''?'' as Databasename,* from [?].dbo.sysobjects where name = ''@@@@@@@'''

    Replace @@@@@@@ with your search criteria

    Wilfred
    The best things in life are the simple things

  • RE: Moving LDF and MDF files created using SQL Server 2000 to SQL Server 2005

    You tried to attach the file to a directory which doesn't exist (it's probably the original directory on the 2000 server). Check directories for both .mdf and .ldf files

    Wilfred
    The best things in life are the simple things

  • RE: High availability and serving several cities

    Well, Microsoft offers the software, but normally, you start with the hardware. I think your question is not suitable for this forum. You probably won't setup a high-availability environment based...

    Wilfred
    The best things in life are the simple things

  • RE: a question about MySQL

    You should post you question on a MySQL forum.

    Try the MySQL forum at http://www.dbforums.com/

    Or do you mean migrating from MySQL to MSSQL ?

    Wilfred
    The best things in life are the simple things

  • RE: Problems with differential backups

    Just to be clear:

    - Which backup solution are you using?

    - Which SQL version (including SP/hotfixes please)

    - Which edition

    - x86 or x64?

    Wilfred
    The best things in life are the simple things

  • RE: capacity planning

    Here's a script I use to monitor you databasesize

    print '*** Creating objecten voor DBSize'

    print ''

    if not exists (select 'yes' from sysobjects where name = 'dbsize')

    BEGIN

    CREATE TABLE DBSize(

    [Servername] sysname DEFAULT @@SERVERNAME

    ,...

    Wilfred
    The best things in life are the simple things

Viewing 15 posts - 121 through 135 (of 335 total)