Viewing 15 posts - 2,461 through 2,475 (of 2,904 total)
Use Enterprise Manager, expand down to the database. Right click on the database and select Properties. Go to the Data Files tab. What do you have set for "Maximum file...
September 29, 2003 at 1:03 pm
swede,
The database does not need to exist on the new server for it to be attached. I have done this several times.
koithodan,
The problem is that you never detached the original...
September 29, 2003 at 7:08 am
dnivrav and gfahrlander,
Even though we've gotten off the original topic and this should have been in a new thread....check out this article:
http://www.sqlservercentral.com/columnists/bknight/10securingyoursqlserver
-SQLBill
September 26, 2003 at 12:46 pm
That's correct. You would then need to create a login for them and give them the access they need. It won't be automatic.
-SQLBill
September 26, 2003 at 12:42 pm
Something like this, you'll have to work with it:
SELECT
CASE WHEN DATEPART(dw,getdate()) = 5
THEN <code>
...
September 26, 2003 at 12:40 pm
Also, check the SQL Server Error logs (In Enterprise Manager drill down to Management, expand that, expand SQL Server Logs and double click on the most recent one).
And also check...
September 26, 2003 at 12:34 pm
According to the Books OnLine (BOL), the transaction log backups apply to the last full backup.
Refer to BOL, use the Index tab, enter
transaction logs
double click on 'backing up'
Select the option...
September 26, 2003 at 8:13 am
dnivrav,
Builtin/Admin is a poor security practice. It allows ANYONE who is an administrator to have SYSADMIN access to your databases.
Let's say we work together. You are the DBA and I...
September 26, 2003 at 8:02 am
Typo on my part. There should have been a comma after the first DAY in each line:
WHERE Due_Date > DATEADD(HOUR,0,DATEADD(DAY,(DATEDIFF(DAY,0,GETDATE()),0))
AND Due_Date < DATEADD(HOUR,0,DATEADD(DAY,(DATEDIFF(DAY,-1,GETDATE()),0))
-SQLBill
September 26, 2003 at 7:57 am
Are there any error messages? In Enterprise Manager,drill down to Management, expand that, expand SQL Server Logs. Double click on the most current log. Also, check the Windows Event Logs.
Next...
September 26, 2003 at 7:53 am
I believe it has to do with SCOPE. Refer to the Books OnLine (BOL) for Variables and select the option for Transact-SQL, then search for scope.
BOL talks about how a...
September 25, 2003 at 10:33 am
There isn't any IIF in SQL Server. Use the CASE statement.
-SQLBill
September 25, 2003 at 7:56 am
We use TCP/IP.
This is from Inside Microsoft SQL Server 2000 by Kalen Delaney.
quote:
Microsoft internal testing has found the TCP/IP Sockets Net-Library...
September 24, 2003 at 12:36 pm
Each maintenance plan creates a job. In Enterprise Manager, drill down to Management, expand that and expand SQL Server Agent. Click on Jobs. Find the maintenance plan job, right click...
September 24, 2003 at 12:30 pm
Viewing 15 posts - 2,461 through 2,475 (of 2,904 total)