Viewing 15 posts - 1,096 through 1,110 (of 1,536 total)
Indeed, it matters not.
June 11, 2004 at 10:54 am
Right click on databases, select restore.
In the box type in the new database name, hit the options tab and change the RestoreAs filenames.
June 11, 2004 at 9:33 am
RESTORE DATABASE <NEWDBNAME>
FROM DISK = ' <FILENAME> '
WITH MOVE ' <DATAFILEFROMSYSFILES> ' TO ' <NEWDATADISKFILENAME> ',
MOVE ' <LOGFILEFROMSYSFILES> ' TO ' <NEWLOGDISKFILENAME> '
June 11, 2004 at 9:18 am
Depending on the MDAC version on the front end I believe that it will connect to udp1434 to learn the port that SQL is running on, so it shouldn't be...
June 11, 2004 at 8:52 am
If you're database connections are using DSN's to connect you can just change the port in the DSN. I'm not sure about using strings built directly within an app however.
June 11, 2004 at 8:42 am
I would certainly change the firewall rules, I would also change the port that SQL is listening on from 1433.
June 11, 2004 at 7:49 am
Also if you are managing a lot of users it's far easier to manage their access through Windows groups as opposed to individual logins.
June 11, 2004 at 7:32 am
Check the share and directory level permissions for the SQL Server Agent account putting the files out on the server. The rights might be restrictive for the account.
June 11, 2004 at 6:12 am
The main thing is that SQL Auth uses sends the password in plain text accross the network. Windows Auth doesn't.
June 11, 2004 at 6:09 am
Has anyone changed the server side regional settings overnight?
June 10, 2004 at 11:04 am
Try detaching the database, dropping the login, adding the login again making sure that the sid matches the sid on the original server. Then attach the database, you should have...
June 10, 2004 at 11:03 am
How can you set up a raid 10 array with an odd number of drives?
June 10, 2004 at 8:36 am
Looked at this from the newsletter...followed the link http://www.cooljules.co.uk/ntl.htm
Kinda freaked me out, this person is from my hometown and went to my school.....hate getting freaked out like that
June 10, 2004 at 5:56 am
You're really kinda in a bind having the 4 drives, ultimately you are going to be wasting 1.
I'm not sure what kind of disk space you are looking to have,...
June 10, 2004 at 5:52 am
You can put the inserts, updates and deletes within a proc, you just have to build and execute a dynamic sql statement to do so...
CREATE PROC INSERT_ORACLE_DATA @INSERTVALUE VARCHAR(25)
AS
DECLARE @sql...
June 10, 2004 at 5:21 am
Viewing 15 posts - 1,096 through 1,110 (of 1,536 total)