Forum Replies Created

Viewing 15 posts - 7,081 through 7,095 (of 7,187 total)

  • RE: Error while backups

    AJ

    It sounds like your network is busy or unreliable and therefore your backup cannot complete.  Is the database that is failing the biggest, by any chance?  Or is it being...

  • RE: How do I find out the filegroup for all tables in the database ?

    SELECT o.name, s.groupname

    FROM dbo.sysfilegroups s

    JOIN dbo.sysindexes i

    ON i.groupid = s.groupid

    JOIN dbo.sysobjects o

    ON i.id = object_id(o.name)

    AND i.indid in (0, 1)

  • RE: Replication fails - transaction log full

    Claudia

    It's not necessarily a bad thing for the log to be bigger than the data - especially if you have a high volume of transactions.  What you need to do...

  • RE: Replication fails - transaction log full

    Ahhh - snapshot replication.  While the snapshot is being applied, every insert will be written in the transaction log.  That's why it keeps growing.

    I think you're confusing the transaction log...

  • RE: Excel and SQL

    Alex

    In that case, you can write some VB in another Excel workbook that saves your file as an xls and creates the name, then schedule that from SQL Server or...

  • RE: Multiple Instance data connection copy between similar/but not same db tables

    Michael

    Check out the topic Identifying a Data Source Using a Linked Server Name in Books Online.

    John

  • RE: Excel and SQL

    Alex

    Will this work for you?

    (1) Save your spreadsheet as an xls file.

    (2) Create a named range in the spreadhseet to cover all the data.

    (3) In Enterprise Manager, create a Linked...

  • RE: Replication fails - transaction log full

    Cláudia

    This is normal behaviour.  Your destination database is having inserts, deletes and/or updates done on it and these operations will be recorded in the transaction log, causing it eventually to...

  • RE: database roles or NT groups?

    Something that you touched upon is not having control over the membership of the Windows group.  If you grant a Windows group access to your SQL server, bear in mind...

  • RE: Make preview of changing rows affect by TSQL Update statment

    Luis

    If your update query looks like this:

    UPDATE MyTable

    SET MyCol = 'NewValue'

    WHERE SomeOtherColumn = 'SomeOtherValue'

    Then you can see what rows you are affecting by running this:

    SELECT * FROM MyTable

    WHERE SomeOtherColumn =...

  • RE: Intellisense for SQL Server

    I'm liking it - even though it doesn't auto-complete information schema views.  Unfortunately I'm stuck with a Windows NT box for administering my production servers and so I can't use...

  • RE: Problem with SELECT IN Clause

    Sharon

    You need to normalise the MyUsers table.  This means having one user ID in each row of the table.  Then your query will look like this:

    SELECT u.col1, u.col2, m.col1, m.col2

    FROM...

  • RE: Permissions - reality check.

    David

    The problem with instantiating user-defined structures is that you may end up with crap table design, poor indexing and missing referential integrity.  You, as the DBA, will probably spend more...

  • RE: USE OF STUFF

    Dionisis

    What I would suggest is leaving the column as it is, and have your client application present the data in the way you describe.  That way, the data stays numeric...

  • RE: Unable to configure server as distributor: Error 8152

    I'm not saying this will necessarily fix your problem, but if you're using replication then I recommend upgrading to SP4.

    As for the problem itself, this is the error that you...

Viewing 15 posts - 7,081 through 7,095 (of 7,187 total)