Forum Replies Created

Viewing 15 posts - 706 through 720 (of 1,132 total)

  • RE: Space Available for database is 0

    There a many cases where a simple 'sp_spaceused' will not return current space utilization and the information is out of date and this behavior is documented in BOL.

    To get absolutely...

  • RE: Changing filegroup

    "We have two identical databases to serve testing and development purposes. I thought it's better to differentiate between those two not only by the database name, but also by the...

  • RE: DTS help

    You could use an activeX script to get the file name and then set a global variable. You can parse the file name into the component parts and then...

  • RE: Is Notification Services Installed ?

    Found something on the SQL Server Magazine site:

    For NS2.0 (SQL 2000): If Notification Services is installed on Windows, you will find this registry key:

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NotificationServices

    ...

  • RE: VMWare Performance Testing Methodology

    You are not off base for the long run, but before going thru the effort of writing the tools for the methodology, there are some simple tools available from Microsoft...

  • RE: Login/Date/Modify Trigger function - I want to know...

    Here is a shortcut to BOL from SQL Query Analyzer: highlight a term, such as "create trigger" and then press SHIFT-F1 - BOL will automatically open.

    Good Luck

  • RE: a question for all

    "Then give an example that illustrates a problem that may occur if the property is not supported"

    Using the Northwind example database, consider the following three SQL fragments:

    1. Insert into...

  • RE: User or role ''''guest'''' already exists in the current database

    "Guest" is a special user and actually cannot be removed but you can revoke the database access. Once access is revoked, sp_helpuser and EM, will no longer show the user.

    From...

  • RE: Login/Date/Modify Trigger function - I want to know...

    Ok - the problem is you do not understand how inserts, updates and deletes are actually implemented by SQL Server. Most of this is copied from BooksOnLine:

    Two special tables...

  • RE: Building a New Server

    Regarding the disk drives:

    1. Use the smallest and fastest drive that you can purchase (36Gb at 15K RPM ? )

    2. Use RAID-1 not RAID-5

    3. Use a seperate disk for each...

  • RE: Remove ability to check autogrow

    IF the users have db_owner role, then no, they have complete control over the database.

    Check if ddl_admin role is sufficient.

  • RE: Truncate Log didn''''t work for all databases

    sp_execresultset is part of SQL Server 2000 but is an undocumented system procedure, so you will not find it in Books OnLine.

    If your server has a case sensitive collation, then...

  • RE: DTS Parameters are not being passed

    I ran another test using the sp_dso_ExecProcessMatchImportDTS stored procedure but with my DTS package and passing the value of the global variable worked fine. This leads me to believe...

  • RE: Replacing records with JOIN ?? Please help

    Please post create table and insert statements not lists of data values.

    insert into mainItems

    (MainItemNumber ,MainDescription, MainColor)

    select 11222, '11222', 'Purple' union all

    select 11233, '11233', 'Purple' union all

    select 11244, '11244', 'Purple'

    insert...

  • RE: DTS Parameters are not being passed

    I just ran a test an you do NOT need a Dynamic Properties Task unless a global variable is used to set a connection property.

    The table "GlobalVariableSave" is only for...

Viewing 15 posts - 706 through 720 (of 1,132 total)