Viewing 15 posts - 166 through 180 (of 183 total)
Thanks, eventually found what i needed to do. I needed to create the table in this format:
CREATE TABLE dbo.tablename( columnname1 smallint identity(7,2), columnname2 char(20) )
December 4, 2007 at 11:08 am
Am using the go statement after each create table statement do you think that is the problem.
December 3, 2007 at 4:26 pm
Thanks very much for this it was really helpful, do you have any idea how i can show the relationship, in terms of one to many and many to many?
December 3, 2007 at 10:59 am
I am using Visio to design a new database with an existing schema,and am using SQL server version 9.0.1406.
Am also using visio 2007, which is the professional one.
December 3, 2007 at 9:13 am
Can you kindly let me kniow which one you are using?
December 3, 2007 at 7:51 am
Can I use PK in brackets beside the column name that needs to have a primary key?
December 3, 2007 at 6:38 am
I used the following script to create the table for the results to be inputed into the space_used table, but doesnt to work as i get the following...
November 29, 2007 at 1:33 pm
even if i use the sp_spaceused, how will i populate hem into a table that i created?
November 29, 2007 at 10:05 am
I finally got it fixed - just repaired the .Net framework from the control panel, funny enough i guess.
November 27, 2007 at 5:44 pm
Have you created the virtual directory with the report cnfiguration manger? (thats if your using SQl2K5)
November 26, 2007 at 1:14 pm
having difficulty trying to retrieve the rest of the details, am using :
SELECT books.*
FROM books
INNER JOIN ordered_items
ON books.bk_no = ordered_items.bk_no
GROUP BY books.bk_no
HAVING COUNT(ordered_items.bk_no)>2
and getting the error message:
Msg 8120, Level 16,...
November 4, 2007 at 9:13 am
Viewing 15 posts - 166 through 180 (of 183 total)