Viewing 15 posts - 16 through 30 (of 47 total)
FWIW - I really hate MS Access to begin with.
-ldb
December 20, 2004 at 8:44 am
I don't think this is possible. SQL Server has the ability to listen on multiple ports, but I don't know of a way for it to listen on multiple IP...
December 9, 2004 at 7:18 am
This is a good reason why you'd want to archive your tran log before you perform the database backup.
You really don't need to have the next archive log file...
December 2, 2004 at 7:24 am
Hi Atiq,
There is only a 16-file limit using sp_attach_db. You can still use the CREATE DATABASE FOR ATTACH syntax.
-ldb
November 22, 2004 at 7:45 am
Before a decision is made either way, you need to consider scalability.
Let's assume the function is complex - requiring multiple database queries and you're building an interactive app. Can you afford the network traffic sending...
November 19, 2004 at 10:04 am
Where do you guys find the time to code in either environment?
November 19, 2004 at 9:41 am
I agree with Guus, using the NOT EXIST is more accurate (what happens when [column 0] is nullable?).
Try a query such as:
INSERT INTO NEWTABLE (COL1, COL2, COL3)
SELECT A.COL1, A.COL2, A.COL3
FROM database1.dbo.OLDTABLE A
...
November 17, 2004 at 10:52 am
Talltop
When you start paying for SQLServerCentral.com then you have the right to complain. Until then just appreciate that someone has taken the time to collect and publish these QODs.
Lighten up..
November 17, 2004 at 10:31 am
Oh - and by the way, if you try reattaching the DB through Query Analyzer, the error message will tell you specifically that the disk drive is not a dependency....
November 11, 2004 at 6:59 am
Yes, but there is a dependency in the process - you must take the SQL Server resource offline to add the dependency, so the criticality of steps is to add...
November 11, 2004 at 6:50 am
You miss the point. Restarting the SQL Server resource, in itself, does nothing. Only by making the Disk resource a dependency of SQL Server does it become visible.
November 10, 2004 at 2:26 pm
Do you mean enforcing the name or automatically naming the FKs?
November 9, 2004 at 8:22 am
Dinesh,
In your forward-engineer options, you need to check the option to use Quote Names. You can find it in the 'Other Options' group of options.
-ldb
November 9, 2004 at 8:11 am
Just to add to bhunter1, the only time you'd get that would be if you removed Builtin\Administrators from the System Administrators server role. We, in fact, do delete the Builtin\Administrators...
November 3, 2004 at 8:07 am
Viewing 15 posts - 16 through 30 (of 47 total)