Forum Replies Created

Viewing 15 posts - 7,096 through 7,110 (of 7,429 total)

  • RE: Select "No DATA"

    Sorry about that, found the big gapping flaw in my code and created this updated version. I took the time and ran against my largest database (10,573,787 rows)

    It took me...

  • RE: T-SQL - a small doubt about it

    The T stands for Transact so Transact SQL. Thi is kind of like Oracles PLSQL which has extensions to the base SQL methods in Oracle. T-SQL is Microsofts version of...

  • RE: create or replace

    Not sure I understand our question. Are you wanting to change a procedure, if so then ALTER PROCEDURE. Other than that can you clarify?

    "Don't roll your eyes at me. I...

  • RE: What rules of thumb you live by when programming?

    Sorry, hit post in error before I said.

    What rules of thumb or words of wisdom help you as a programmer?

    "Don't roll your eyes at me. I will tape them in...

  • RE: Log file 13 GB

    The filepath syntax should look like this.

    BACKUP DATABASE myDB

    TO DISK = 'f:\myDbFull.dat'

    Or something similar, just make sure to put path in single quotes.

    "Don't roll your eyes at me. I will...

  • RE: Eval equation, which is a string in a table

    Why do dynamic at all for this. Unless your example is no fully showing all I need to know you should be able to do

    DECLARE @equation VARCHAR(20)

    DELCARE @idnr whatever

    SET @idnr...

  • RE: how to create a user without a login name

    dbo is the only one by deafult which should look that way. If you see others then Steves statement on sp_change_users_login to fix this mapping is what you need. You...

  • RE: How to Fix Inconsistent Metadata Errors

    Actually no, the server I tested from was (RC, SP1, SP2) on 2000 and (RC, SP1, SP2, SP3) with SQL 7. The problem actually steams form the column order stored...

  • RE: Two potential subqueries for one result column

    I try to conform you syntax a little to make it run faster, but it should accomplish everything you want or lead you down the right path as I don't...

  • RE: how to create a user without a login name

    The only user I know of that would have none as the login name is guest account. Where exactly are you finding this?

    "Don't roll your eyes at me. I will...

  • RE: Is 0% Downtime Possible?

    I worked previously with a telco and was suprised by how much the networks went down without anyones knowledge but the techs. A lot tracking goes on to keep in...

  • RE: dual primary keys?

    Or in EM click the first items row selector (the grey box to the side) and then hold down shift or ctrl to select others the same way and finally...

  • RE: Assigning value of a search

    Or post your code and let us see if there is another option, also what is input would be helpfull.

    "Don't roll your eyes at me. I will tape them in...

  • RE: Best Practices - Editing

    There are ways you could generate scripts without them doing it, but those ways entail a lot of watching or potentially missing changes if multiple people make changes on the...

  • RE: Select "No DATA"

    Not to step on Robert here, but just a little detail, even though his soultion will work you are required a cursor and a temp table both of which cause...

Viewing 15 posts - 7,096 through 7,110 (of 7,429 total)