Forum Replies Created

Viewing 15 posts - 21,316 through 21,330 (of 22,184 total)

  • RE: Loading Trace Files into table

    We use that all the time with no serious issues. But then I've never monitored tempdb while running it. Are you breaking up your trace files or creating one gigantic...

  • RE: Cannot decrease logical fragmentation on an index

    How many rows are in the tables? I've seen this when the number of rows is very low. Other than that, rebuilding the index usually changes the fragmentation percentage.

  • RE: Date function

    So, would it be plagiarism to copy that from you?

  • RE: Becoming a DBA

    At this point in time, keep your plans to work with 2000, but go ahead & skip 2005 and start learning 2008.

  • RE: Objects per filegroup?

    Take a look at the catalog views. Sys.Tables & Sys.Data_Spaces. This is quick & dirty:

    select t.name as TableName

    ,s.name as FileGroupName

    from sys.tables t

    join sys.data_spaces s

    on s.data_space_id = t.lob_data_space_id

  • RE: Job execution times

    I found a blog entry over at MSDN that talks about this:

    http://blogs.msdn.com/sql_protocols/archive/2005/10/22/483684.aspx

    If you scroll down to Message #10:

    Reason:

    1) There are spaces after Instance name in the...

  • RE: Job execution times

    I think you have something else going on. The delays are not normal.

  • RE: Shy Site Promoter

    Well it's about time.

    Congratulations Steve! You earned it.

  • RE: Date function

    Hey Jeff,

    Do you have that response in a script so you can just point & click? If so, can you share the script?

  • RE: SQL Server 2005 ( Schema Issue )

    Hi Sandy,

    When you run backups, don't use drive paths like this:

    BACKUP DATABASE x TO DISK = 'C:\x.bak'

    Because it will place them on the relative drive for that server. Instead,...

  • RE: How to grab a SQL Job among 100 peoples ?

    Not knowing your friend, the company, or the interview, it'd be impossible to say why. Usually, it's because the people doing the interview thought that someone else was more qualified...

  • RE: Odd Identity Question

    Well, if you're lazy you can even get around that:

    INSERT INTO dbo.MyTable DEFAULT VALUES

    GO 42

    I suspect that's not what was meant. I'd be curious if there was a method too.

  • RE: Odd Identity Question

    Yep. Works. Thanks.

  • RE: Odd Identity Question

    Actually, no, I hadn't thought of that, but since our internally developed applications are never allowed to work under a security model that would provide them with DDL, it's not...

  • RE: Performance Problem when using Caching

    The fact that copying everything to a new database resulted in a working query strongly points out that something on the old database was different.

Viewing 15 posts - 21,316 through 21,330 (of 22,184 total)