Viewing 15 posts - 376 through 390 (of 2,904 total)
How are you running the stored procedure? Are you running it via a job? If you are running it as a job, then it runs as the service login assigned...
July 13, 2007 at 12:35 pm
From the sounds of it, you probably should be doing MERGE replication. I've never used it so you should read up on it in the BOL and GOOGLE it.
-SQLBill
July 13, 2007 at 12:32 pm
I think it's because the question is designed to throw the reader off. You WANT to install that version, BUT managers don't have admin permission. SO what version DO...
July 12, 2007 at 3:13 pm
Can't tell you about how much disk space would be needed by NetBackup.
I can tell you that the best practice is to use native SQL Server backup commands to back...
July 12, 2007 at 10:39 am
What do you mean you can't connect to it? How are you trying? Did you register the new instance in SSMS/Enterprise Manager? Are you getting any error messages?
-SQLBill
July 12, 2007 at 10:32 am
You misunderstood me....are other jobs/scripts running that have created locks. For example: running DBREINDEX will lock the table.
-SQLBill
July 10, 2007 at 2:20 pm
Change your INNER JOIN to an OUTER JOIN. Inner joins do not return values when one is NULL. Outer joins will return values even if one of the values...
July 10, 2007 at 2:18 pm
Does something have the space 'locked' when the backup tries to happen?
-SQLBill
July 9, 2007 at 2:55 pm
They don't tell you which questions you got right or wrong.
I believe the points are weighted - the harder the question the more points.
-SQLBill
July 9, 2007 at 2:51 pm
Because they don't have access?
Check to see that the user actually has a Windows Authentication login in SQL Server. ANd that they have access to one or more databases. Lastly,...
June 29, 2007 at 11:53 am
Once you move your databases over run the following:
sp_change_users_logins 'report'
That will give you a 'report' of logins that are not properly setup. Either they don't exist or they are orphaned.
If...
June 29, 2007 at 11:51 am
June 28, 2007 at 4:29 pm
I agree with the poster that suggested changing the time of the job. If you do that and all stays the same, you know it's a problem with that...
June 28, 2007 at 2:36 pm
Check with the vendor, they may actually have a reason for only doing one tlog backup that makes sense to them. One reason could be that they mistook tlog...
June 28, 2007 at 2:32 pm
Do NOT overwrite every transaction log backup or they are really worthless for restoring. You need every transaction log since the full backup to be able to do the...
June 28, 2007 at 2:28 pm
Viewing 15 posts - 376 through 390 (of 2,904 total)