Viewing 15 posts - 23,941 through 23,955 (of 26,490 total)
What version is MSDE? Can you connect to it with QA? If so, do this: select @@VERSION and report the results.
November 3, 2008 at 3:49 pm
Here is a starting point: BOL (Books On-Line).
Lookup the following:
sys.databases
sys.tables
sys.columns
sys.types
November 3, 2008 at 3:47 pm
Missing the data types for org.known_as and ca.attribute3.
November 3, 2008 at 3:41 pm
You can do this by one of two ways, backup/restore or detach/attach.
November 3, 2008 at 1:05 pm
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
Viewing 15 posts - 23,941 through 23,955 (of 26,490 total)