Forum Replies Created

Viewing 15 posts - 3,391 through 3,405 (of 6,486 total)

  • RE: Return Info from SP then Update that Info

    Unfortunately - yes. I think you're asking for the cake, the cake PAN, and the cake knife, all of which would have to be edible:)

    Reporting services is not the...

  • RE: Multiple threads of a single SPID visible on sysprocesses

    Marios Philippopoulos (5/8/2008)


    Thanks all for your responses.

    Steve, yes, there are triggers running.

    Matt, I hate cursors too... 🙂

    Gail, thanks for the info, I've wondering about this for quite some time...

    Keep...

  • RE: SET @@IDENTITY OFF ?????

    kevin mann (5/7/2008)


    Thank you for the quick response! Any suggestions to make Access behave?

    Keep in mind that you're not "in Access". The objects for the ADP are SQL...

  • RE: Clusterization

    Instead of clustering, you might care to look at database partitioning, and/or Federated databases. Those are more performance-oriented concept for scaling out on databases.

    That being said - 10M rows...

  • RE: Trigger "For Insert,Update"

    Why not use an INSTEAD OF TRIGGER? That way, you can validate the data, and if it PASSES, then you actually insert the data. If it doesn't then...

  • RE: DTSrun/DTExe in sql server 2005

    Sunshine -

    ditch the ~. That's an instruction telling DTSrun that you're passing an encrypted/hex value for a parameter. Plain-text parameters should be passed without the ~.

  • RE: Planes, Trains, and Cows?

    Michael Valentine Jones (5/8/2008)


    So how long will it be before Homeland Security requires all air travelers to have an RFID in their ear?

    http://www.sciam.com/article.cfm?id=rfid-power

    "Now Hitachi, the maker of that chip, is...

  • RE: Bachelors degree - Who has one, or even more education?

    Anders Pedersen (5/8/2008)


    I said I was weird about it 🙂

    I guess I find myself weird in the OTHER direction:). I have yet to go for the certs, but I...

  • RE: Deleting data from tables, keeping structure

    You could simply go

    Delete from Mytable

    It doesn't have the same limitations as TRUNCATE TABLE, although you will have to empty the tables in the "right order" (delete the rows from...

  • RE: Difference between SQL Server Client Tools

    I think the only one that has differences in the client tools is the Express Edition (which has a customized version of SSMS). Otherwise - I believe the tools...

  • RE: SAN Performance Issue??

    leonp (5/8/2008)


    I am inclined to believe so too .. Is there any reason why the sql server will be responsible for this slowdown? I want to make sure we (SQL...

  • RE: Multiple threads of a single SPID visible on sysprocesses

    Marios Philippopoulos (5/8/2008)


    I'm running a resource-intensive job.

    I've noticed in the sp_who2 output that multiple threads/rows (10 or more) are spawned for that same SPID (most of those threads are sleeping).

    What...

  • RE: Planes, Trains, and Cows?

    Steve Jones - Editor (5/8/2008)


    Also, it's a spherical dispersion, correct? It radiates in all directions, unlike a bar code that must be read from a specific side.

    The actual shape of...

  • RE: Planes, Trains, and Cows?

    Charles Kincaid (5/8/2008)


    I want to take a shot at heading off the folks who are going to bi... er .. complain about RFID being invasive to personal privacy. Right...

  • RE: Difference between UDF and View

    7. Table-valued functions return table VARIABLES, which don't generate statistics in the same way "regular" tables (even temporary ones) do (a single primary key index is possible, although damn near...

Viewing 15 posts - 3,391 through 3,405 (of 6,486 total)