Forum Replies Created

Viewing 15 posts - 23,566 through 23,580 (of 26,490 total)

  • RE: Conditional Where

    Garadin (11/22/2008)


    MyServer.AdventureWorks.dbo.Products.ProductID

    Server.Database.Schema.Table.Column

    You use it in linked server queries.

    I have used linked servers, but I have never done that in queries.

    I would use the four part name (server.database.schema.table) in the...

  • RE: Conditional Where

    Garadin (11/22/2008)


    Good info Lynn, thanks.

    Just to clarify though, 3/4/5 part naming in the FROM clause isn't being touched, this just seems to imply that they want you to alias the...

  • RE: Are the posted questions getting worse?

    GilaMonster (11/22/2008)

    Lynn's been doing an absolutely heroic job of keeping things under control while some of us have been lounging around in Seattle.

    Yeh, it has been a killer week telling...

  • RE: Conditional Where

    Lynn Pettis (11/22/2008)


    Garadin (11/22/2008)


    Lynn,

    Where did you read this? Everything I've ever read suggests 3 part naming due to different schemas.

    Here it is:

    Transact-SQL

    Three-part and...

  • RE: Conditional Where

    Garadin (11/22/2008)


    Lynn,

    Where did you read this? Everything I've ever read suggests 3 part naming due to different schemas.

    Here it is:

    Transact-SQL

    Three-part and four-part column...

  • RE: if Full Backup Time and Trn Log Backup Time same?

    I'm sorry, but I really don't understand the question, but here is a shot at it.

    At 12:00 AM a full backup is started that doesn't finish until 5:02 AM. ...

  • RE: Stop TSQL from raising errors to caller

    Can you post the code for your stored procedure?

  • RE: Are the posted questions getting worse?

    Jeff Moden (11/22/2008)


    GilaMonster (11/21/2008)


    Jeff Moden (11/21/2008)


    Another favorite are those that ask things like "which would be faster" and they post the code for both... talk about "lazy". :hehe:

    Yeah, but at...

  • RE: Are the posted questions getting worse?

    Matt Miller (11/22/2008)


    Lynn Pettis (11/20/2008)


    Jeff Moden (11/20/2008)


    Adrian Nichols (11/20/2008)


    Jeff Moden (11/19/2008)

    Boy oh boy do I ever agree with that! Guess that makes us "elitists", huh? 😛

    I wouldn't say that...

  • RE: Indexes

    Unfortunately, you can't decide what indexes should be created just looking at the table. What is important are the different queries (select/insert/update/delete) that will be run against the table(s)...

  • RE: if Full Backup Time and Trn Log Backup Time same?

    I'm not really sure what you are asking here. With SQL Server 2005 and later, full backups no longer block transaction log backups from running. Any transaction log...

  • RE: Reading data from the .LDF file

    Gail,

    Just checked out your blog and it looks like you had a pretty good and exciting time here in the USA. Have some fun doing the tourist thing in...

  • RE: how to create our own database in sql server2005?

    You probably tried to create and use the database at the same time. The CREATE DATABASE statement must be in its own batch. Try this:

    create database mytestdb

    go

    use mytestdb

    go

  • RE: Reading data from the .LDF file

    Ahh geez, Gail, you're taking the fun out of it! :P;)

  • RE: DATEADD Function not working like I am expecting

    Sergiy (11/22/2008)


    jsteinbeck (11/21/2008)


    Well it seems to be working... would you care to give me a date that wouldn't work and I can go from there...

    No offense, I come here to...

Viewing 15 posts - 23,566 through 23,580 (of 26,490 total)