Forum Replies Created

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

  • RE: Autonumber

    You could accomplish your objective in an insert/update trigger, but you are setting yourself up for some maintenance headaches. Perhaps an alternative solution would be to just compute the...

  • RE: Modifying a column on a table being replicated

    Well, sometimes that is the price you pay for tinkering with the system tables. I have to give you high marks for your creative approach. I think you...

  • RE: text deliminator not found

    You are correct about the text qualifiers. They should ignore the embedded commas. Have you tried using the "{CR}{LF}" as the row delimiter? If that...

  • RE: TABLE IS NOT INDEXED

    Do you have the ability to step through the source code while it executes the conenction and sql actions against the server and db? Sounds like you may be...

  • RE: Modifying a column on a table being replicated

    Adding a column to a table and altering an existing column are two different stories. Give it a try - you should find out pretty quickly if your theory...

  • RE: Modifying a column on a table being replicated

    I don't think you will be able to do this. I'm running SQL2K, but the same rule should still apply to 7.0. - can't alter a replicated column (it's...

  • RE: Need DTS Help

    You have a few options; you can export the dts package as a vbs file and incorporate that directly into your code; you can set up a dynamic properties...

  • RE: Need DTS Help

    It is possible, you just need to get a bit deeper into the guts of your DTS package. What version of SQL are you running?

  • RE: Can DTS\VBScript access a SQL Database?

    It can be done, but is there a specific concern you have for the change?

  • RE: Developer\DBA access to production DBs

    Andy has a good point. If your developers have such a hard time with relinquishing "the power and control" of the sa login, bring the concept home to them...

  • RE: Dev. and Prod databases on same server?

    When you say "they think it makes the developer's life a lot easier", who are you referring to? Is it your supervisor, or the developer's bosses? What do...

  • RE: SQL Server Data Base Properties

    You can obtain a significant amount of information on SQL Server objects through SQL-DMO. VB and VBscript is a great way to use this object model.

    Sean

  • RE: Passing a value out of a Stored Procedure

    You need to specify an OUTPUT parameter in your Create Proc statement, and assign the value of @test-2 to it. The resulting value will then be available...

  • RE: Connect By Prior

    Just to exend the example I copied from the Oracle site, if you have a table called "Universe" and two columns 'Parent" and "child", a similar result can be...

  • RE: Connect By Prior

    I wasn't familiar with this operator in Oracle (and many others, for that matter). Here's what I found on thier site:

    SELECT RPAD( ' ',...

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