Forum Replies Created

Viewing 15 posts - 256 through 270 (of 284 total)

  • RE: linking to word

    I assume you're referring to more that just a mail merge data set.

    If you know how to code in VBA, then Open your Word doc, hit Alt+F11 to open the...

  • RE: Legal Storage

    Ahh... poetic justice... that the attorneys are drowning in the very flood of data that our onerous legal / regulatory environment has created.

    On the tech side -

    We have looked...

  • RE: SSIS REPLACE Double Quote

    I already tried that but it also failed.  In the Derived Column transform, even though the commands appear to be SQL, apparently they are not.  I have found that string values must...

  • RE: Object Oriented

    We are implementing a new Trust Accounting system that uses Cache.  I have not as yet worked with it, and from some preliminary discussions, probably won't.  Apparently it's based upon...

  • RE: Concatinating to a NULL column

    Also, this way from BOL:

    SET CONCAT_NULL_YIELDS_NULL

    Controls whether or not concatenation results are treated as null or empty string values.

    Syntax

    SET CONCAT_NULL_YIELDS_NULL { ON | OFF }

    Remarks

    When SET CONCAT_NULL_YIELDS_NULL is...

  • RE: simple query question. please help a noobie

    Also, in MS Access you can use a Saved Query just as you would use a Table.

    So create your Query 1 and save it.  Then design Query 2 and select...

  • RE: Flat files - any advantages?

    I recently read somewhere that if your DB is used primarily for analysis and reporting and you frequently have to join more than 4 tables, then you should consider denormalization...

  • RE: Simple Select statement help

    If you mean to permanently change the values in the db table then use an UPDATE statement.

    UPDATE My_Table

    SET show_name =  'My hunter''s notebook'

    WHERE show_name =  'My hunter''s journal'

  • RE: Default SQL Server Agent Jobs??

    I have never encountered default jobs in the 15 SQL servers I tend to.... don't believe there is such a thing.

    Perhaps they configured those backups for you, especially if it's...

  • RE: trying to mod this script... need some help.

    Yes, because the mycolumn value inside of the STUFF function will change with each row.  Why don't you test it as follows:

    1) Run it on a copy of mytable

    OR

    Add a...

  • RE: is there a way to check when a database was last used/opened

    I'm not sure I can help you with the past accesses, but going forward, you may want to look into the SQL Profiler tool that comes with MS SQL and...

  • RE: trying to mod this script... need some help.

    Perhaps I'm not understanding the question... but, if you execute the UPDATE statement without a WHERE clause, it will update mycolumn and reformat the date for all of the records...

  • RE: There has to be an easier way to import text files

    You can also save the DTS as a Visual Basic file and include it in a VB program.

  • RE: How to Find the DTS Package Name from the Job Step GUID

    If you schedule by right clicking the DTS Package you will always get the encrypted DTSRun command line.

    However if you use the dtsrunui.exe tool in C:\Program Files\Microsoft SQL Server\80\Tools\Binn

    Select the...

  • RE: How do I use SQL Query on Excel Data?

    I will generally use the Linked Server method for data links that tend to be more permanent.  For the one time scenarios I usually use MS Access and either link...

Viewing 15 posts - 256 through 270 (of 284 total)