Forum Replies Created

Viewing 15 posts - 1,261 through 1,275 (of 7,429 total)

  • RE: Dynamic Sort Question

    Or if your data set is small and you are using ADO you could sort in the recordset itself using the SORT method which might be a bit easier to...

  • RE: A Stone-Age Upgrade

    Do a search for Coral Castle in Florida. The information is amazing and apparently the site is more so. Haven't been yet but hope to soon.

  • RE: Technological evangelists

    And assembly language is enough to make you feel that way. But I recall those when I was in High School studying languages...

  • RE: Who Owns that Object?

    I didn't get that far into testing. I did notices this however when I ran your example.

    I got

    #a__________________________________________________________________________________________________________________00000000002B

    #a__________________________________________________________________________________________________________________00010000002B

    The second set of values changed on the hex section (remember HEX is...

  • RE: Who Owns that Object?

    It is based on connection not the specific SPID as attached or the user id. I am sure there is a mechanism somewhere in memory handling mapping to a SPID...

  • RE: BCP Character Set Conversion Problem

    How are you confirming that it changed from 197 to 143 as far as character. Many times it is just choice of font that gives the impression. Look at in...

  • RE: Change current date/time on SQL server machine

    If you observe daylight savings time then that is basically the same action the system takes on behalf of itself. I have not seen any issues specifically like this unless...

  • RE: BCP and Triggers

    From BOL

     

    Trigger Execution

    All bulk copy operations (the BULK INSERT statement, bcp utility, and the bulk copy API) support a bulk copy hint, FIRE_TRIGGERS. If FIRE_TRIGGERS is...

  • RE: bcp

    bcp [TESTDB].[DBO].{mbt_image_1MB} {in} [c:\new_auth.dat] [-fc:\authors.fmt] [-Spund2k215[\sql2ka]] [-Usa] [-Ppund2k215]

     

    Are you trying to do this in Query Anaylzer or Command Prompt, should be done using a command prompt window. And should read...

  • RE: Restore database without transaction log

    From the file you cannot restore without the transaction log or expecting the same size as when backed up. What you may need to do is restore to another server...

  • RE: SELECT TOP X by using dynamic SQL

    But keep in mind Rowcount may not return the same records as top does. So it depends on a few factors but make sure you test that you get the...

  • RE: Anyone ever hear of a product called Advantage Database Server?

    Understandable. However if it is already there, is small and the application is on par why waste time andmoney researching further? As said, if it isn't broker then don't fix...

  • RE: Anyone ever hear of a product called Advantage Database Server?

    Right off the things that stand out to me in their propaganda flyer are the prices at the bottom.

    Apparently they used the old pricing models and they never state which...

  • RE: TSSQL ???

    Even better than Profiler itself look at sp_trace_create and related subjects in BOL to create the same files a sprofiler like you want.

  • RE: SET-BASED AND ROW-BASED

    Any looping condition where a row is looked at is row-based. A while loop, cursor or any other method where you step thru the rows for processing. 

Viewing 15 posts - 1,261 through 1,275 (of 7,429 total)