Forum Replies Created

Viewing 15 posts - 1,021 through 1,035 (of 1,654 total)

  • RE: function regular expression to validate email

    Or try this one:

    http://vyaskn.tripod.com/handling_email_addresses_in_sql_server.htm

    [font="Verdana"]Markus Bohse[/font]

  • RE: Disk Sace Usage

    INSERT INTO myTable

    Exec sp_spaceused

    [font="Verdana"]Markus Bohse[/font]

  • RE: Configuration

    Try this:

    Exec sp_MSForeachDB @command1 = 'Use ?;SELECT DB_NAME(),FileName,

    CASE

    WHEN Growth = 0 THEN ''NO''

    ELSE ''YES''

    END as AutoGrow

    FROM sysfiles'

    [font="Verdana"]Markus Bohse[/font]

  • RE: Finding Analysis Services in SQL 2000

    Brandie Tarvin (11/29/2007)


    Do I need to install AS on my desktop to get the client tool that I can use to hook up to the server?

    Hmm, I must admit...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Finding Analysis Services in SQL 2000

    Brandi,

    I would check if the MSSQLServerOLAPService is installed on the machine. You could also check if a folder ...\Microsoft Analysis Service exists but the service is a better option.

    When it...

    [font="Verdana"]Markus Bohse[/font]

  • RE: SQL query help

    Just google on "sql duplicate records rows" and you will probably find hundreds of these scripts.

    [font="Verdana"]Markus Bohse[/font]

  • RE: Disk Sace Usage

    I'm sure that if you search in the scripts section of this site you will find at least 4 or 5 scripts dealing with spaceused etc..

    Here's one which deals more...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Junk charecter in SQL Server 2000 varchar

    Swati,

    the only explanation I can think of is a collation issue. Maybe the database (or table or column) collation you use in SQL server is different from the Orace collation.

    [font="Verdana"]Markus Bohse[/font]

  • RE: Suggestions for Avoiding Timeouts

    You wrote that you have AWE enabled but only use 600 MB of RAM. AWE memory is over 4GB so you better disable that again.

    Now to the timeout problem, I've...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Junk charecter in SQL Server 2000 varchar

    First of all why would you want a primary key with a length or 32. Seems extremely unefficient to me.

    Second could you post ure DDL. Now I can only gues...

    [font="Verdana"]Markus Bohse[/font]

  • RE: can't delete a database...

    If your database still has the status loading, you probably didn't select the recovery option when restoring the backup. Start antother restore and make sure you've select RECOVERY option.

    The message...

    [font="Verdana"]Markus Bohse[/font]

  • RE: SQL 2005 Profiler

    Don't double post. See the answer here:

    http://www.sqlservercentral.com/Forums/Topic426742-146-1.aspx#bm426745

    [font="Verdana"]Markus Bohse[/font]

  • RE: SQL 2005 Profiler Trace Tables

    With sp_trace_create you an create your own trace. The easiest way is prpobably to define a trace in profiler and then script the trace definition.

    About writing the results to a...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Warning when rebuilding index in another database

    I agree with Kenneth that your procedure looks for systransschema in the local datbase.

    I ran into similar issues then writing such a procedure, but instead of prefixing all the...

    [font="Verdana"]Markus Bohse[/font]

  • RE: SQL Server 2005 Memory

    Thayal Muhunthan (11/27/2007)


    How do I add a 3GB swithch .. I have installed 2.5 and the Total memeory showing as 1.6 GB, not even 2.0 GB ..

    Could please let...

    [font="Verdana"]Markus Bohse[/font]

Viewing 15 posts - 1,021 through 1,035 (of 1,654 total)