Forum Replies Created

Viewing 15 posts - 6,181 through 6,195 (of 7,505 total)

  • RE: Restore v Detach/Attach

    you can query inter-collation !

    but you have to convert to the same collation in the query :

     

    http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=4&messageid=95954

  • RE: dbcc showcontig

    can you run sp_updatestats and dbcc updateusage , just to make sure the statistics are OK ?

  • RE: How to enable connection pooling for ODBC source?

    afaik this is set with the connection !

    Connection Pooling in .NET Applications

    conn.ConnectionString = "...;Min Pool Size=50";

    perfmon can show you the counters.

    you may want to...

  • RE: SQL Server Copy not working

    just my 2ct

    - I use this step in a job:

      execute @ReturnCode = msdb.dbo.sp_add_jobstep @job_id = @JobID , @step_id = 9, @cmdexec_success_code = 0, @on_success_action = 1, @on_success_step_id = 0,...

  • RE: dbcc showcontig

    - how many files are in the filegroup ?

    - how many columns compose your clustring index key ?

  • RE: No enough Storage?

    can you provide some config info ?

        SQLServer version and sp

        Server OS and sp

        Memory

    If you can reproduce this or know the interval this recurs, start profiler to capture...

  • RE: Select on table not working

    just to add to David's reply :

    When you are logged in as member of the sysadmin fixed server role, internaly the user is switched to "sa" which defaults to schema...

  • Understanding Logical Scan Fragmentation and Extent Scan Fragmentation values.

    Logical Scan Fragmentation and, to a lesser extent, Extent Scan Fragmentation values give the best indication of a...

  • RE: SQL Memory ! What is the best setting ?

    "Buffer Cache Hit ratio is around 65% on average."

    That's still surprising on a 1.8 Terrabytes system with only 1,7Gb ram for sqlserver.

    Maybe you can optimize by investigation partitioned tables...

  • RE: SQL Memory ! What is the best setting ?

    every litle bit of ram helps in this case !

    Keep in mind windows itself needs some memory, I guess the 500mb you're leaving will do if it's a dedicated...

  • RE: SQL Memory ! What is the best setting ?

    In the servers Boot.ini file add :

    [operating systems]

    multi(0)disk(0)rdisk(0)partition(1)\WINNT="whatever windowssystem " /fastdetect /3GB

    You will have to reboot the server to activate it

  • RE: SQL Memory ! What is the best setting ?

    By default windows only allows an application to use up to 1,7Gb ram.

    Adding the /3Gb windows startup parameter, for systems up to 4Gb ram, windows will allow an application to...

  • RE: SQL Memory ! What is the best setting ?

    Seems to me that your server is on the small tiny side

    Adding /3Gb to your startup parameters of Windows may have your sqlserver...

  • RE: Function for Time Conversions

    What I mean is that if you want to e.g. select data with a where-clause which has your UTC time used as a predicate, it's best to convert your search-criteria...

  • RE: Function for Time Conversions

    keep in mind that if you access an indexed column to which you apply a function, will make the predicate non-sargeble. Meaning the index will not be used and the function...

  • Viewing 15 posts - 6,181 through 6,195 (of 7,505 total)