Viewing 15 posts - 1 through 15 (of 63 total)
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...
February 13, 2002 at 2:03 pm
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...
February 13, 2002 at 12:53 pm
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...
February 13, 2002 at 6:48 am
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...
February 13, 2002 at 6:36 am
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...
February 13, 2002 at 6:28 am
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...
February 12, 2002 at 4:05 pm
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...
September 3, 2001 at 6:40 pm
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?
August 31, 2001 at 8:01 pm
It can be done, but is there a specific concern you have for the change?
August 31, 2001 at 8:00 pm
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...
August 31, 2001 at 7:58 pm
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...
August 31, 2001 at 7:47 pm
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
August 31, 2001 at 1:17 pm
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...
August 31, 2001 at 1:11 pm
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...
August 28, 2001 at 7:30 pm
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( ' ',...
August 28, 2001 at 2:50 pm
Viewing 15 posts - 1 through 15 (of 63 total)