Forum Replies Created

Viewing 15 posts - 196 through 210 (of 349 total)

  • RE: iPod Slurping

    I'll bet that back in the late mainframe days they were bemoaning laser printers because someone could print out client lists and they wouldn't look like output from a system,...

  • RE: How much log is full

    Try running DBCC SQLPERF (LOGSPACE). It will give you log size and percent utilization for all databases.

  • RE: TB Database on SQL Server

    If you have some space left on your current server, you could add filegroups/files, and start moving tables, indexes, etc. to their new filegroups. That way, when you restore onto...

  • RE: SQL Agent Mail config thru T-SQL?

    Cool, I'll check into that. Thanks!

  • RE: SQL Agent Mail config thru T-SQL?

    Yes, like I said I did all of the steps that Microsoft recommends in their documentation in technet, I've set up SQL Agent mail many times, both on clusters and...

  • RE: Checking Replication Programatically.

    You can run the following and see if there is an article for a particular table, and if so, what the Publication name is (from the database in question):

    select *...

  • RE: DTS trailer

    I know that you can also grab that info with a Multiphase Data Pump . Lookup Multiphase Data Pump Functionality in Books Online. You can write footer information, etc. with...

  • RE: Users access to Databases

    There's a pretty good script for this in the script section. Do a search for 'Script to list all user and roles'

    It will list users, roles, and database access (not...

  • RE: Restricting rights and deny of access based on access channel

    I don't think that there is a way to do this in SQL Server. Look into application roles, though. If you can create an application role, then set up those...

  • RE: Update or Insert in the same DTS package

    I've seen a lot of people advocate importing the file into a staging table and then use Stored Procedures to do the Update/Inset logic.

    I've only had to worry about this type...

  • RE: Best Way to move data between databases?

    If you delete the tables, you won't have to worry about turining IDENTITY_INSERT on. you could just use the Copy SQL Server objects task in DTS.

    If you want to...

  • RE: A SAN Primer

    RAIB (Redundant Array of Innexpesnive Beers)!

  • RE: Good books/websites to learn ASP.NEt

    i took a class at a local university (ASP.Net programming with VB.Net) and we used the Murach book. I really liked it as an introductory book.

  • RE: A SAN Primer

    I actually went further. Here's the originl setup:

    1 Mirrorset - Transaction Logs (2 disks). Windows Drive I:

    1 RAID10 - Data - MDF and NDF file (8 disks). Windows Drive J:

     

    I was...

  • RE: A SAN Primer

    I got the best performance by creating multiple mirrorsets instead of one big RAID 10 set (Mirrored stripes). I created a filegroup made up of a file on each Windows...

Viewing 15 posts - 196 through 210 (of 349 total)