Viewing 15 posts - 196 through 210 (of 372 total)
I think if I were you I would create a new database on your Enterprise server in a form that can be restored on your Standard version.
With that...
October 16, 2013 at 9:24 am
Sean;
You are ahead of me with your post. I just got finished formatting the code as well. At first glance, not only the multiple execution paths,...
October 16, 2013 at 8:14 am
I would say it all depends on how many DTS packages there are.
1) If there are a few then consider either a migration tool or recreate them in SSIS
2) If...
October 16, 2013 at 7:46 am
Here is a clear example where bad coding practices continue to propagate. It's MOROFFs like this that give a bad name to DBAs....
Kurt
October 16, 2013 at 7:39 am
I had it somewhat different, maybe too complex:
;with which_col_a_cte (col_a, col_d, col_e) on (
select s.col_a, d.col_d, d.col_e
from destination d inner join
source s...
October 10, 2013 at 2:30 pm
db_name()
This will give you the current database name. But not really sure how you want to utilize this. You may need to resort to scripting out the maintenance...
October 10, 2013 at 1:56 pm
The first thing that comes to mind is to create an SSIS ETL package that loads your reporting database. You can then have greater granularity of what gets loaded...
October 10, 2013 at 1:47 pm
You brought up an interesting point. I have seen where badly written SQL has been masked by the never ending upgrading of hardware, faster processors, more memory & faster...
October 10, 2013 at 1:18 pm
I don't use SP_executeSQL often... but I'm guessing that if you declare the @tblAmount table in the @parameters variable instead of the SQL string (@lStr) it may work.
Kurt
October 10, 2013 at 12:40 pm
Are you getting the same error? Which table is it complaining about? @tblAmount?
Kurt
October 10, 2013 at 12:38 pm
Is it possible to have a share on your receiving database server for the logs instead of using the administrative share?
Kurt
October 10, 2013 at 12:21 pm
I found this on MSDN:
You are using $ share which will be accessible by administrators, so make sure your service account is added to Local administrators group of both the...
October 10, 2013 at 12:12 pm
Did you verify that your logshipping folder didn't go away? I've had that happen to me.
Kurt
October 10, 2013 at 11:45 am
harita (10/10/2013)
hi all I am getting this error*** Error: Access to the path '\\sqltest\d$\logshipping' is denied.(mscorlib) ***
the backup job runs but the copy job is failing
Is it possible that...
October 10, 2013 at 11:23 am
I have found that unless I'm dealing with a VLD I can create a maintenance plan to reindex all of the databases. Once a database reaches the VLD size...
October 10, 2013 at 7:27 am
Viewing 15 posts - 196 through 210 (of 372 total)