Viewing 15 posts - 23,941 through 23,955 (of 26,486 total)
If you check the code I posted, you'll see that I created a table, inserted some records, then added a column, and inserted additional records. I used the exact...
November 3, 2008 at 12:50 pm
Elisabeth Rédei (11/3/2008)
If you want a default value; use a Default getdate(), it you want to enforce a NOT NULL constraint; add a CHECK constraint. Or both.
You can add the...
November 3, 2008 at 12:34 pm
I think we need more information regarding the process involved and what the job is supposed to do, and how it does it. As you have a trigger starting...
November 3, 2008 at 12:20 pm
To answer this question, you should compare the execution plans of the two two queries. You might be surprised to see that both are doing a clustered index or...
November 3, 2008 at 12:10 pm
I can't answer your question, but I did a test (code follows), and when I added the DateAdded column with a default, it was populated.
create table #Test(
...
November 3, 2008 at 11:57 am
I've been lurking on this topic, and I'd be interested in what the final outcome is also.
November 3, 2008 at 11:30 am
Not really. I need to know what are the data types of the columns referenced from each of the tables used in the query.
Please take a few minutes to...
November 3, 2008 at 10:55 am
Do a search on this site for Tally table. I think this will help you solve your problem.
November 3, 2008 at 10:52 am
Have to agree with steveb, use a default of getdate() fro the column.
November 3, 2008 at 10:49 am
Well, having the entire query is good, but we still need to know the data types of the columns since the problem you are having is a conversion problem.
November 3, 2008 at 10:36 am
Okay, That's what happens when you make a guess in the dark. What is the data type oc ca.account_established_date? Actually, what are the data types for all the...
November 3, 2008 at 10:19 am
paul.starr (11/3/2008)
PL/SQL
select /*+ RULE */
...
November 3, 2008 at 10:05 am
You could add a job step that deletes the file after it is processed. There is a problem with that option as well, the job will most likly fail...
October 31, 2008 at 1:03 pm
Off hand, no. You could modify the procedures to use isnull: isnull(string1,'') + isnull(string2,'').
October 31, 2008 at 12:58 pm
Viewing 15 posts - 23,941 through 23,955 (of 26,486 total)