Forum: MS SQL Sep 21st, 2006 |
| Replies: 4 Views: 5,713 |
Forum: MS SQL Sep 19th, 2006 |
| Replies: 1 Views: 2,600 Re: connection problem via driver I really have never heard of that driver nor understand what you're trying to do.
The question is though, why are you connecting to port 1279? Did you change the port number in the server network... |
Forum: MS SQL Sep 1st, 2006 |
| Replies: 4 Views: 3,286 Re: Column Aliases I don't believe there is a way to store a column alias with a table. If you really need to do this, I'd suggest creating a table of aliases which relate back to the original column and table name. ... |
Forum: MS SQL Sep 1st, 2006 |
| Replies: 1 Views: 3,129 Re: Drop User In Mssql You can't drop a user if they are currently logged in. Do an sp_who to find the SPID's the user is logged in with, and kill those spid's. Then drop the user. |
Forum: MS SQL Sep 1st, 2006 |
| Replies: 3 Views: 6,740 |
Forum: MS SQL Sep 1st, 2006 |
| Replies: 4 Views: 3,286 Re: Column Aliases Not sure what you mean when you ask if you can store the column alias when you create the table. A column alias can be assigned when you perofrm a query on the table. |
Forum: MS SQL Aug 21st, 2006 |
| Replies: 1 Views: 3,726 |