Forum Replies Created

Viewing 15 posts - 886 through 900 (of 1,064 total)

  • RE: Problem when I try to see volumes from SQL Server

    Is drive G: set to be a dependency of SQL Server in Cluster Administrator? If not, you won't see the drive in Enterprise Manager.

    If it is a dependency, does the...

  • RE: Log Shipping

    I'd be very interested in Chris's solution.

    I've always understood that the database cannot be accessed during the actual restore of the transaction log, but can be accessed (if left in...

  • RE: Mysterious LIKE problem

    Is the @FunctionCode variable (or parameter) declared long enough to have the '%' appended to it?

    If it isn't, the first method would return the correct rows, but the second method...

  • RE: Examples using Table Variables

    You can insert into a table variable using a select statement in the same way you insert into a normal table, e.g.

    declare @tab table(objid int,name sysname)

    insert @tab select id,name from...

  • RE: Linked server and Windows Authentication

    EdVassie,

    How do you set the rights detailed in 5) and 6)?

    I know about the 'Account is trusted for delegation' setting, but neither I nor our infrastructure team have heard of...

  • RE: differential backup newbie question

    A differential backup will only backup extents that have changed since the last full backup.

    Even if just a single byte changes in the extent, the whole extent is backed...

  • RE: Tables on certain filegroups

    Sp_objectfilegroup doesn't work for indexes (look at sp_helpindex instead).

    However, the basic mapping from sysindexes to sysfilegroups (on column groupid) is exactly the same for the base table and the indexes.

    ...

  • RE: Tables on certain filegroups

    This information can be found in the sysfilegroups table via sysindexes (for the clustered or heap index - id 1 or 0)

    If you look at the system stored proc...

  • RE: How to connect via IIS to linked server

    We have a similar problem, and despite help from Microsoft, we are no nearer to solving the problem.

    The following link may help:-

    http://support.microsoft.com/default.aspx?scid=KB;EN-US;811889

    It didn't in our case. We would get the...

  • RE: Error 1023 :invalid parameter 1 specified for date

    You don't need the quotes round the first parameter to datediff. i.e. it should be:-

    SELECT scholarship_id

    FROM Scholarship.dbo.Scholarship

    WHERE Datediff(m,cast..........

  • RE: Profiler and "reads" counter

    I don't have a definitive answer, but we regularly see similar behaviour.

    I think it is caused because SQL Server caches the plan for a query dependent on the 'SET' options...

  • RE: Drop connections when doing a restore

    Do the following before restoring:-

    alter database dbname set single_user with rollback immediate

  • RE: Select and From view clause

    Try:- select * from [_SMDBA_].[Incident]

  • RE: incorrect syntax near 'COLLATE'

    Check the database compatibility level of the target database. If this is set to 70, then the database doesn't support the COLLATE command. If so, change the compatibility level to...

  • RE: Help with Between Statement

    If you don't specify a time, it defaults to 12:00:00.

    I suspect your entries for 8/31/2003 will have a time later than 12:00:00.

    Change your query to between '8/1/2003 00:00:00' and 8/31/2003...

Viewing 15 posts - 886 through 900 (of 1,064 total)