Forum Replies Created

Viewing 15 posts - 3,376 through 3,390 (of 7,429 total)

  • RE: UDF's vs Procs

    Sounds great. Let us know your results. It would be nice to definitively say under X condition using a UDF has the following bennifit, under Y condition SPs are better...

  • RE: UDF's vs Procs

    Well nice to know they thought of that at least. Bet they are using data pointers thou so the referenced value is a memory location tied to the data pulled...

  • RE: Inserting 'n' rows into a table

    The only way I know you could accomplish that is setup a deliminator and pass all row details for every field item, so that you can identify the points to...

  • RE: UDF's vs Procs

    The Constant Scan logical and physical operator introduces a constant row into a query. Meaning the value does not change.

    However if you change the input value it should change as...

  • RE: Incremental Values

    colname inttype IDENTITY(1,1) NOT NULL

  • RE: UDF's vs Procs

    Well,

    I think your thinking of SQL Developer Edition or SQL Enterprise Edition with regards to Indexed views. Yes, I have a copy of each we either got thru purchasing directly...

  • RE: Changing sql-agent job-owner....

    It is in Logins under Security. The problem is the sid is different and can no longer be validated. Drop the account from login will make it disappear from SQLs...

  • RE: SQL Server Licensing

    Confused here. Unless you need to run 2 instances you just need one copy licensed for 2 processors (Which is technically 2 copy costs). See http://www.microsoft.com/sql/howtobuy/production.asp

  • RE: Hide databases in Enterprise manager

    There have been threads on this but I cannot find them. Anyway to the best of my knowledge there is no way. The information comes from sysdatabases in master from...

  • RE: Use of functions Do or Don't

    New discovery for me. Functions don't seem to take advantage of indexes and may executre only once (run as determinsitic) depending on various factors which means the results only output...

  • RE: UDF's vs Procs

    quote:


    From the apparent scans, a UDF does not use the index. Does this seem correct or am I missing something?


  • RE: Worst Security hole I have ever seen

    Ok since this is the title of the thread "Worst Security hole I have ever seen" I thought I would include on thing that gets more people into trouble...

  • RE: Constraint Question

    The key are these

    to disable

    ALTER TABLE tablename NOCHECK CONSTRAINT all

    ALTER TABLE tablename DISABLE TRIGGER all

    to enable

    ALTER TABLE tablename CHECK CONSTRAINT all

    ALTER TABLE tablename ENABLE TRIGGER all

    Just replace tablename...

  • RE: How do CREATE TABLE statements function?

    Ok some may laugh (no I don't do drugs at all but I do suffer from the fact my brain is constantly going and taking things apart) and some may...

  • RE: UDF's vs Procs

    I think I understand now. And it makes perfect sense. See the key is I only tested a single run and when I increased the conditions to scan thru the...

Viewing 15 posts - 3,376 through 3,390 (of 7,429 total)