Forum Replies Created

Viewing 15 posts - 1,156 through 1,170 (of 1,654 total)

  • RE: configure report server problem

    From BOL:

    The following list highlights the major SQL Server 2005 components that are not supported in SQL Server Express:

    • Reporting Services

    • Notification Services

    • Integration Services

    • Analysis Services

    • Full...

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

  • RE: sp execution

    Frances,

    I don't see any problem. When I try your original procedure the records are all inserted into the table. Tried it 6 times, got 6 records in the table.

    About the CAST,...

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

  • RE: Who dropped my table ?

    Abhijit is right.

    The SSMS report should show any schema changes, when and by whom. Another alternative is the default trace which is running with SQL 2005.

    Markus

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

  • RE: db_datawriter in SQL3005

    Pieter,

    when your using SELECT INTO, your running an implicit CREATE TABLE statement. Datawriter only means that a user can insert, update or delete records in existing tables or views. He...

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

  • RE: Another question about security

    The behaviour you're seeing is perfectly normal and intended. The DENY overruling andy over grants only applies to grants on the same object.

    For example if your testuser is also memebr...

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

  • RE: CTP 4 x64 edition?

    Did you look here ? https://connect.microsoft.com/SQLServer/content/content.aspx?ContentID=5395

    Markus

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

  • RE: Import of database from SQL2000 on WinNT to SQL2000 on Windows 2000

    Sisir,

    I makes no diference which OS you're using. What is important is the SQL Server version and what you mean by "Importing". Since you talk about Publishers and subscribers I...

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

  • RE: apply SP2 with 0 downtime

    John

    applying a service pack will cause some downtime, no matter what hardware or configuration you have because you need to restart the services.

    With database mirroring you could failover...

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

  • RE: Finding Default Database Path

    You need to query the registry.

    DECLARE

    @DefData nvarchar(200)

    EXEC

    master.dbo.xp_instance_regread

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

  • RE: Should I drop and recreate a stored proc everytime?

    Interesting question I think.

    While I see loads of scripts which first check "if exists then drop" I usually argue it's better to use ALTER in case an objects already...

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

  • RE: Backup Log & Shrink File

    David,

    a full backup won't do anything with your Tlog.

    You need to backup the transaction log in order to mark parts of the tlog as inactive so that they...

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

  • RE: AS database Performance

    Sameer,

    as a starter have a look into the performance guide from MS.

    http://download.microsoft.com/download/8/5/e/85eea4fa-b3bb-4426-97d0-7f7151b2011c/SSAS2005PerfGuide.doc

    Markus

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

  • RE: Easy SQL Server Version Identification

    Kyle,

    I usually use

    IF CONVERT(char(1),SERVERPROPERTY('ProductVersion'))<'9' 

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

  • RE: set dateformat

    Jai,

    as you can find in several other posts on tyhis site, you the best place to handle date formats is the client application not the server. It's not important...

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

  • RE: QA results window - how do I remove it?

    Joe,

    either use CTRL+ R or add the Show/Hide results button to your toolbar. You find it under Tools\Customize in the Windows categorie.

    Markus

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

Viewing 15 posts - 1,156 through 1,170 (of 1,654 total)