Viewing 15 posts - 2,176 through 2,190 (of 2,904 total)
I have found that when I use more than one database in a stored procedure, I have to put SET NOCOUNT ON for each one.
USE TEMPDB
SET NOCOUNT ON
Code
USE MyDB
SET NOCOUNT...
March 22, 2004 at 8:55 am
Your query to find duplicate fistamp on the fi table is incorrect. You are looking on the fi table when you should be checking the sl table (look at your...
March 22, 2004 at 8:47 am
Yes.
Transaction log backup is of everything since the last backup of any type.
Differential backup is of everything since the last FULL backup.
Scenerio: Midnight - Full Backup, every 10 Minutes a...
March 19, 2004 at 12:47 pm
If you are taking transaction log backups every 10 minutes and NOT using them immediately, what's the use of doing it that way?
I would change the backup method. You can...
March 19, 2004 at 7:15 am
Here are two articles to read on moving MSDB and MODEL. They talk about using Enterprise Manager, but the facts are the same.
http://support.microsoft.com/default.aspx?scid=KB;en-us;224071&
http://www.sqlservercentral.com/columnists/sjones/movingmsdb.asp
Basically, you need to set the...
March 17, 2004 at 1:47 pm
First you MUST restore a full backup with the WITH NORECOVERY option. Then you restore each transaction log in order using WITH NORECOVERY on all but the last one.
example:
RESTORE DATABASE...
March 17, 2004 at 1:38 pm
You were in the process of moving WHAT files? And how were you trying to move the files?
-SQLBill
March 17, 2004 at 12:20 pm
That is interesting. I'll keep looking and see what I can find out about it. It might be KEYWORDs but if so they aren't listed that way.
-SQLBill
March 17, 2004 at 9:58 am
Where does the 'work' take place? I know in Crystal Reports the default is to pull all the data back to the client machine. You can change it to do...
March 17, 2004 at 9:55 am
Also, make sure the login the job uses has access to the file it's supposed to run.
Might also want to check the Windows Event Viewer Logs (application, security, system) for...
March 16, 2004 at 11:59 am
You are logged in as Administrator when you run it in QA. But how is it set to run as a job? (In Enterprise Manager, drill down to JOBS, find...
March 16, 2004 at 11:57 am
Does the user have SELECT access to HISTORY?
-SQLBill
March 16, 2004 at 11:48 am
I have MS SQL Server 2000 and Veritas Backup Exec (both 8.6 and 9).
My data is mission critical and my prefered method is to use SQL Server's BACKUP commands to...
March 16, 2004 at 7:44 am
Description is NOT a keyword.
For a list of keywords, refer to the BOL, use the Index tab, enter "Keywords, reserved for SQL Server".
-SQLBill
BOL=Books OnLine=MS SQL Server Help
Installed as part of...
March 16, 2004 at 7:37 am
I believe the problem is with your subSELECT:
SELECT Accounts.ProductCode FROM Accounts WHERE h.ID=Accounts.ID
h is never defined within the subSELECT.
-SQLBill
March 16, 2004 at 7:33 am
Viewing 15 posts - 2,176 through 2,190 (of 2,904 total)