Forum Replies Created

Viewing 15 posts - 14,866 through 14,880 (of 22,211 total)

  • RE: Error when retoring database from TSQL

    Sure sounds like something is broken in the backup file:

    SQL error 3241: SQL error 3241: The media family on device 'SQLBACKUP_273C82FD-3412-49B2-9669-42A275B6845802' is incorrectly formed. SQL Server cannot process this media...

  • RE: exclude one column

    By stating SELECT *, you're asking for everything. The only way to not get everything is to explicitly state what you want as the others have already said.

    But, you can...

  • RE: Views that are prefixed with _dta_mv

    James O. (6/9/2010)


    Thanks for the reply.

    I've deleted those views and replication was reinitialized just fine.

    And FYI, I just bought your book! lol 😉

    Glad I could help. I hope the book...

  • RE: Remote Query Performance Tuning

    This is the cause of the Remote Scan, not the CTE:

    INSERT INTO #tagData SELECT * FROM OPENQUERY([scada-02],'SELECT * FROM usascada.dbo.FloatTable');

    What I'd suggest is putting some filters into that SELECT statement...

  • RE: Views that are prefixed with _dta_mv

    Welcome!

    Those are very likely to be detritus from the Database Tuning Advisor. Why they are there? Hard to say, but it's likely that someone was running the DTA and had...

  • RE: Views and Perfomance

    You have to remember that views (except for indexed views) are just the underlying query. There is no special construct or nifty thing going on with them. Sometimes, the optimizer...

  • RE: Retrive Data after Delete or Update Row of Table.

    GilaMonster (6/9/2010)


    Grant Fritchey (6/9/2010)


    At the point of a delete or insert, you do have access to the deleted & inserted temporary tables that will allow you to see what was...

  • RE: one to one relation ship

    The reason I used to do this in the past usually broke down into two scenarios. Scenairo #1, way too many columns to make up a single table, so I'd...

  • RE: Single SQL Stored Procedure for Select/Insert/Update/delete

    2500 stored procedures is a little difficult to maintain. 40 is nothing.

    No, I wouldn't recommend jamming all the code into a single procedure. In fact, I'd recommend, as much as...

  • RE: Best design for Historical database

    It depends too much on what you want to do with the data. If you're just storing it as is, no modifications, will that satisfy these future reports? Or do...

  • RE: Retrive Data after Delete or Update Row of Table.

    At the point of a delete or insert, you do have access to the deleted & inserted temporary tables that will allow you to see what was deleted or inserted,...

  • RE: Who physically maintains your sql servers?

    I work for a fairly large insurance company and we have SA's responsible for the OS and the Servers and the disks and all things configuration oriented. It works out....

  • RE: Is the MVP Worth It?

    An excellent question, and comparing it to writing a book is pretty apt. I suspect, more than anything, it's a personality trait that drives a person to do that kind...

  • RE: Are the posted questions getting worse?

    Steve Jones - Editor (6/5/2010)


    In a source control session at SQL Saturday #22. Surprising that quite a few people don't use an VSC for their SQL Code.

    What do you guys...

  • RE: Advice starting SQL Server user group in Albany NY

    dbowlin (6/3/2010)


    Ray K (5/18/2010)


    Hey Dan, anything to report on this?

    Haven't heard from you in a while, so I was just wondering!

    I am working through the information from Blythe. We...

Viewing 15 posts - 14,866 through 14,880 (of 22,211 total)