Forum Replies Created

Viewing 15 posts - 44,746 through 44,760 (of 49,571 total)

  • RE: Microsoft Certified Master: SQL Server 2008

    Too expensive.

    I can understand why. Instructors don't come cheap and it it's 5 different instructors over a couple weeks, that is going to cost. Problem is, it's priced curently in...

  • RE: How to take backup of table in SQL2005

    You don't backup tables in SQL, you backup databases.

    You can export the table as csv, or make a copy of it in another database

  • RE: populate a weeks worth of data from daily data

    Can you please give us the table structure, some sample data and an example of what you want out?

    Without that we're going to be guessing as to whether or not...

  • RE: Undelete SPs

    There isn't an undelete function. There's no history unless you have an audit-trail or similar. There's no built-in source control of any form in SQL.

    Are you sure there's no backup...

  • RE: Performance Issue in Search

    If you can post the code, I'm sure someone will be able to help you remove the cursor.

  • RE: Indexes

    Generally, yes, but you should test your queries to make sure they use the indexes you've created.

  • RE: SQL SERVER PROFILER

    Use the fn_trace_getdata function to load the trace data into a SQL table. Then you can query the trace data to get your information.

    The only metrics you can compare your...

  • RE: What will be the appropriate index.

    If you're asking for all the values in the table to be read (as you are) the only way that SQL can possible do that is to scan the index....

  • RE: Server Logins

    Default database.

    What you need to get out of the syslogins is the login name, the password (hashed) and the SID. The SID is what will link up the logins with...

  • RE: SQL Server 2005 max memory and /3GB switch

    Don't enable AWE with only 4 GB memory. Enable the /3GB switch in boot.ini.

    As for the cumulative updates, run SELECT @@Version and compare the version number to the very comprehensive...

  • RE: One Milly-yon IOPS - Database Weekly (Sept 1, 2008)

    Jeff Moden (9/1/2008)


    GilaMonster (9/1/2008)


    Of course, because there are still going to be people writing queries with just the smallest amount of SQL knowledge (enough to do the job, not enough...

  • RE: Intellisense in SSMS 2008

    It only works if you're connected to a SQL 2008 server. If you're connected to any lower version, intellisense is disabled

  • RE: Server Logins

    Try restoring the backup to another server as a normal user database, then scripting the logins from the syslogins table.

    Please, in the future, put SQL 2000-related questions into the SQL...

  • RE: Understanding Index defragmentation

    Dougo (9/1/2008)


    Where would I find the logical scan fragmentation percentage?

    It's called that in DBCC showcontig. If you're using sys.dm_db_index_physical_stats (which I assume you are) then the avg_fragmentation_in_percent is the logical...

  • RE: One Milly-yon IOPS - Database Weekly (Sept 1, 2008)

    rbarryyoung (9/1/2008)


    True, if you're talking about a USB Flash Drive, but SSD's are usually made with faster/better grade memory and designed for throughput equal to the bus speed (as hard...

Viewing 15 posts - 44,746 through 44,760 (of 49,571 total)