Forum Replies Created

Viewing 15 posts - 1 through 15 (of 28 total)

  • RE: Tame Those Strings - Finding Carriage Returns

    I'll admit that I don't have all of the ASCII codes memorized. However, we've reached a point where rote memorization of such things is silly. If you need...

  • RE: Using CLR integration to compress BLOBs/CLOBs in SQL Server 2005

    Thanks for the article.

    Honestly though, I'm not sure how useful this will be in practice. To begin with, as mentioned, this is not going to be a good way...

  • RE: Stored Procedure Naming Conventions

    Like the author, I use the 'usp_' prefix on all of my stored procs. The rest of the name is descriptive text. Personally, I like to be able...

  • RE: SQL Server Move to SAN

    One minor thought. You'll want to make sure that you put your paging file on a different set of spindles and, if possible, a different channel from your data....

  • RE: Simplicity

    <Parrot>

    Rrrwwaaakk...Query Analyzer

    </Parrot>

    Unfortunatly, QA got bundled into Management Studio on 2005, so now, insted of being a simple, light weight, tool, it's a tool you have to dig out of a...

  • RE: Stored Procedure vs Triggers

    Perhaps I just missed it in the article, I admit i just skimmed it, but no one has mentioned using AFTER triggers for auditing data. e.g.:

    CREATE TRIGGER AuditStuff ON...

  • RE: Find The Next Identity Number After just deleted Idenity Number

    select ident_current('Mytable') as CurrentID

    Will get you the last identity value generated for a table.

    If you want the next id use:

    select (ident_current('MyTable') + IDENT_INCR('MyTable')) as NextID

    Both will produce the...

  • RE: Document storage / retrieval.

    Just to add a bit to what Shaun said. If you want to have full text searching of the documents, you can create a table with the document id...

  • RE: how to write trigger

    You'll need to do a 2 step process. And you have a couple of options, you'll want to research which will work best for you.

    <Option1>

    Create a trigger on the...

  • RE: Table Lock Issue

    Ok, I'm a rather weak on Access, but since we seem to just be throwing out ideas:

    What is the text of the "Read_Function_Assessments_Make_Table_qry". At a guess, this is probably...

  • RE: reseed table

    Do:

    <code>

    SET IDENTITY_INSERT MyTable ON

    GO

    INSERT INTO MyTable (IdCol, Col1, Col2) VALUES (0, 'value1', 'value2')

    GO

    SET IDENTITY_INSERT MyTable OFF

    GO

    </code>

    You probably don't want to reseed the table completly, as this will end up with...

  • RE: Importing and Parsing CSV file into SQL server 2005

    The first thing you will probably want to do is format the file as just data. For example, strip off the

    'Test Type,Test Description
    6,
    'Version
    2003.12.16
    'Time Stamp
    2006-01-04 16:05:49:406
    'Access specifications
    'Access specification name,default assignment
    512B...
  • RE: the sql server service failed to start - any ideas ?

    SQL 2k5 and VS.Net 2k5 Beta on the same machine can be a bit of a chore. During the development of SQL 2k5 and VS.Net 2k5 the versions of...

  • RE: Access Form on the Front End and SQL Server on the BACK END

    Just as another option, if you are using Office Pro, take a look at Infopath, which comes with Office. It's essentially a quick form making utility and it works...

  • RE: SQL 2000 to SQL 2005: Where have all the old features gone?

    Just to nitpick a bit (it was a nice article), but last I heard the systables are being depricated, as well, in favor of the system views. As such...

Viewing 15 posts - 1 through 15 (of 28 total)