Forum: MS SQL Mar 8th, 2006 |
| Replies: 3 Views: 3,086 Is userID declared as a primary key?(In order for it to have an index)
R U using somekind of a stored procedure to get the values? |
Forum: MS SQL Feb 16th, 2006 |
| Replies: 1 Views: 14,490 Hey noman,
You can do this real easy in MySQL. Use the LIMIT and OFFSET keyword. Thats it you are done.
But in MSSQL there is no LIMIT and OFFSET function. Unfortunately there is no other... |
Forum: MS SQL Oct 24th, 2005 |
| Replies: 1 Views: 19,572 INSERT INTO test
(SELECT [Customer Id]
FROM [Customers])
Works fine. |
Forum: MS SQL Oct 18th, 2005 |
| Replies: 1 Views: 19,572 I'm trying to populate a table from a sub-query.
CREATE TABLE test
(
ID int
)
INSERT INTO test |
Forum: MS SQL Jul 15th, 2005 |
| Replies: 8 Views: 32,836 What type of front end application your using?
It really depends on the front end application your using. |
Forum: MS SQL Jul 14th, 2005 |
| Replies: 5 Views: 11,224 1.Go to Enterprise Manager and right click the databases and create a new database
2.Right click the database which you created and select the ALL Tasks and then select IMPORT DATA
3.Now you... |
Forum: MS SQL Jul 14th, 2005 |
| Replies: 5 Views: 77,728 |
Forum: MS SQL Jul 14th, 2005 |
| Replies: 5 Views: 77,728 I changed it. I went to enterprise Manager and went to design view of the table and changed the data type of the field.
Thanks anyway |
Forum: MS SQL Jul 14th, 2005 |
| Replies: 5 Views: 77,728 Hello,
I want to change the datatype of a field from Varchar to integer in T-SQL.
I tried something like Modify like you use in Oracle.
ALTER TABLE tablename
MODIFY COLUMNNAME Datatype.
... |
Forum: MS SQL Jul 14th, 2005 |
| Replies: 5 Views: 11,224 Do you mean,You want to create a copy of an existing database? |
Forum: MS SQL Jun 30th, 2005 |
| Replies: 1 Views: 43,959 I dont know about enterprise manager...But you can use the query analyzer..
Check out these threads..
http://www.tek-tips.com/faqs.cfm?fid=2519
... |