RBS questions on sharepoint 2013

I need some advice on RBS setup on sharepoint 2013.  I am following the microsoft article on setting RBS setup, on where you run some sql queries for the sql file stream on the content databases you want RBS to be setup on.  Then i download the
RBS_amd64.msi file and install it on one web front end server  and enable for each content database. 
My questions are that i have other web servers, app servers and db servers, do i need to install the rbs.msi exe on every other server in the farm , or just only the web servers and the app servers. Such as do we run that msiexec command on each server.
Also how does rbs work for all migrated sites or existing sites which have documents already stored.  So if we enable rbs for these sites and for files over 5 mb, would that apply to only new uploaded files over 5mb, or will apply to also already stored
over 5mb files. 
Also does shredded storage impact the files sizes been uploaded as while, such if we configure files to be uploaded over 5 mb, will this apply to the files over this limit or does the files have to be much larger than 5 MB, such 8 or 9 mb have the rbs applied
to them.
Can i be advised on these 2 questions.
Thanks

I SUGGEST YOU NOT TO USE RBS IF YOU HAVE FURTHER PLANS FOR MIGRATING FOR NEWER VERSIONS. STILL I will give you steps for migrating RBS on sharepoint 2010 to 2013. But note that when I have migrated it on 2013 it is not in the way or RBS. I had to remove
RBS from 2010 server and convert it itn database file of more than 600 GB and then migrated this db file to restore on sharepoint 2013 with sql 2012. and belive me it took more than 15 days to make copy and paste only. so.. better not to use RBS if you have
large data.
see the below steps.
1.   
Live SharePoint 2010 environment with SQL 2008 R2
a.   
Take back up from 2010 live server.
i.     
Open management studio on SQL server.
ii.     
Take back up of content database of live application.
2.   
QA SharePoint 2010 environment with SQL 2008 R2
a.   
Restore SQL backup
i.     
Open management studio on SQL server.
ii.     
Restore database.
b.  
Create Web Application
i.     
Open SharePoint server
ii.     
Open central admin
iii.     
Create web application with classic authentication.
c.   
Dismount database which is with existing application
i.     
Open SharePoint PowerShell on SharePoint server.
ii.     
Fire below command.
Dismount-SPContentDatabase <Database name>
Note: Change the database name.
d.  
Mount restored database with existing application
i.     
Open SharePoint PowerShell on SharePoint server.
ii.     
Fire below command.
Mount-SPContentDatabase <Database name>  -DatabaseServer  <Database server name > -WebApplication <Web application>
Note: Change the database name and web application URL.
iii.     
Open SharePoint Designer and change the master page and publish it.
iv.     
Set the Test page as Home page.
v.     
Test user logging
Logging with the 2-3 different users and test they can able to logging.
e.   
Configure RBS
i.     
Enable FILESTREAM on the database server
Open SQL Server Configuration manager on SQL Server.
From left panel click on SQL Server Services.
From right panel select the instance of SQL Server on which you want to enable FILESTREAM.
Right-click the instance and then click Properties.
In the SQL Server Properties dialog box, click the FILESTREAM tab.
Select the Enable FILESTREAM for Transact-SQL access check box.
If you want to read and write FILESTREAM data from Windows, click Enable FILESTREAM for file I/O streaming access. Enter the name of the Windows share in the Windows Share Name box.
If remote clients must access the FILESTREAM data that is stored on this share, select allow remote clients to have streaming access to FILESTREAM data.
Click Apply and ok.
ii.     
Set FILESTREAM access level
Open SQL management studio and connect SQL database instance.
Right click on database instance and open Property.
Go to: click on advanced from left panel.
Find the “Filestream Access Level” property and set the value “Full access enabled”
Click OK and exit window.
iii.     
Set SharePoint Configure FILESTREAM access level
Open Query window on root
Execute  following query
EXEC sp_configure filestream_access_level, 2
RECONFIGURE
Restart SQL services
Note: You will get message” Configuration option 'filestream access level' changed from 2 to 2. Run the RECONFIGURE statement to install.”
iv.     
Provision a BLOB store for each content database
Click the content database for which you want to create a BLOB store, and then click New Query
Execute following query
use [<Database name>]
if not exists
(select * from sys.symmetric_keys
where name = N'##MS_DatabaseMasterKey##')
create master key encryption by password = N'Admin Key Password !2#4'
Note:
Change the database name
You get “Command(s) completed successfully.” Message.
use [<Database name>]
if not exists
(select groupname from sysfilegroups
where groupname=N'RBSFilestreamProvider')
alter database [<Database name>]
add filegroup RBSFilestreamProvider contains filestream
Note:
Change the database name.
You get “Command(s) completed successfully.” Message.
use [<Database name>]
alter database [<Database name>]
 add file (name = RBSFilestreamFile, filename =
'<E:\SQL\Data\PetroChina>')
to filegroup RBSFilestreamProvider
Note:
Change the database name and store path.
If you get message “FILESTREAM file 'RBSFilestreamFile' cannot be added because its destination filegroup cannot have more than one file.”
Ignore it.
v.     
Install the RBS client library on each Web server
To install the RBS client library on the on the first Web server
Open SharePoint Web server
Open command prompt.
Execute following command
msiexec /qn /lvx* rbs_install_log.txt /i RBS.msi TRUSTSERVERCERTIFICATE=true FILEGROUP=PRIMARY DBNAME=<Database name> DBINSTANCE=<Database server> FILESTREAMFILEGROUP=RBSFilestreamProvider FILESTREAMSTORENAME=FilestreamProvider_1
Note:
Change the database name and database instance name.
DB instance should be <server name\instance name>
Download RBS.msi for respective SQL version.
To install the RBS client library on all additional Web and application serversOpen SharePoint Web server
Open command prompt.
Execute following command
msiexec /qn /lvx* rbs_install_log.txt /i RBS.msi DBNAME=<Database name> DBINSTANCE=<Database server> ADDLOCAL=Client,Docs,Maintainer,ServerScript,FilestreamClient,FilestreamServer
Note:
Change the database name and database instance name.
DB instance should be <server name\instance name>
vi.     
Enable RBS for each content database
You must enable RBS on one Web server in the SharePoint farm. It is not important which Web server that you select for this activity. You must perform this procedure once for each content database.
Open SharePoint web server
Open SharePoint PowerShell
Execute below script
$cdb = Get-SPContentDatabase <Database name>
$rbss = $cdb.RemoteBlobStorageSettings
$rbss.Installed()
$rbss.Enable()
$rbss.SetActiveProviderName($rbss.GetProviderNames()[0])
$rbss
Note: Change the database name.
vii.     
Test the RBS installation
On the computer that contains the RBS data store.
Browse to the RBS data store directory.
Confirm that size of RBS data store directory.
On the SharePoint farm, upload a file that is at least 100 kilobytes (KB) to a document library.
On the computer that contains the RBS data store.
Browse to the RBS data store directory.
Confirm that size of RBS data store directory.
It must be more than before.
viii.     
Test user logging
Logging with the 2-3 different users and test they can able to logging.
f.    
Migrate RBLOB from RBS to SQL database and completely remove RBS
i.     
Migrate all content from RBS to SQL and disable RBS for content DB:
Open SharePoint server.
Open SharePoint management PowerShell
Execute below script
$cdb=Get-SPContentDatabase <Database name>
$rbs=$cdb.RemoteBlobStorageSettings
$rbs.GetProviderNames()
$rbs.SetActiveProviderName("")
$rbs.Migrate()
$rbs.Disable()
Note:
Migrate() might take some time depending on amount of data in your RBS store.
Change the database name.
If you get message on the PowerShell “PS C:\Users\sp2010_admin> $rbs.Migrate()
Could not read configuration for log provider <ConsoleLog>. Default value used.
Could not read configuration for log provider <FileLog>. Default value used.
Could not read configuration for log provider <CircularLog>. Default value used.
Could not read configuration for log provider <EventViewerLog>. Default value used.
Could not read configuration for log provider <DatabaseTableLog>. Default value used.” Then wait for while it will take some time to start migration.”
ii.     
Change the default RBS garbage collection window to 0 on your content DB:
Open SQL server
Open SQL management studio
Select your content DB and open new query window
Execute below SQL query
exec mssqlrbs.rbs_sp_set_config_value ‘garbage_collection_time_window’,'time 00:00:00′
exec mssqlrbs.rbs_sp_set_config_value ‘delete_scan_period’,'time 00:00:00′
Note:
Run one by one SQL query
You will get “Command(s) completed successfully.” Message
iii.     
Run RBS Maintainer (and disable the task if you scheduled it):
Open SharePoint server
Open command prompt
Run below command
"C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Maintainer\Microsoft.Data.SqlRemoteBlobs.Maintainer.exe" -connectionstringname RBSMaintainerConnection -operation GarbageCollection ConsistencyCheck ConsistencyCheckForStores -GarbageCollectionPhases
rdo -ConsistencyCheckMode r -TimeLimit 120
iv.     
Uninstall RBS:
Open SQL server
Open SQL management studio
On your content DB run below SQL query
exec mssqlrbs.rbs_sp_uninstall_rbs 0
Note:
If you will get message “The RBS server side data cannot be removed because there are existing BLOBs registered. You can only remove this data by using the force_uninstall parameter of the mssqlrbs.rbs_sp_uninstall stored pro” then run this “exec mssqlrbs.rbs_sp_uninstall_rbs
1 ”
You will get “Command(s) completed successfully.” Message.
v.     
Uninstall from add/remove SQL Remote Blob Storage.
I found that there were still FILESTREAM references in my DB, so remove that reference
Open SQL server
Open SQL management studio
Run below SQL query on your content DB:
ALTER TABLE [mssqlrbs_filestream_data_1].[rbs_filestream_configuration] DROP column [filestream_value]
ALTER TABLE [mssqlrbs_filestream_data_1].[rbs_filestream_configuration] SET (FILESTREAM_ON = "NULL")
Note:
Run one by one SQL query
vi.     
Now you can remove the file and filegroup for filestream:
Open SQL server
Open SQL management studio
Open new query window on top
Execute below SQL query
ALTER DATABASE <Database name> Remove file RBSFilestreamFile;
Note:
Change the database name
If it gives message “The file 'RBSFilestreamFile' cannot be removed because it is not empty.” Then remove all table prefix with “mssqlrbs_” from your database and execute SQL query again.
This query takes time as per your database size (almost 30 min).
You will get “The file 'RBSFilestreamFile' has been removed.” Message
Execute below SQL query
ALTER DATABASE <Database name> REMOVE FILEGROUP RBSFilestreamProvider;
Note:
Change the database name
You get “The filegroup 'RBSFilestreamProvider' has been removed.” Message.
Or If you get “Msg 5524, Level 16, State 1, Line 1 Default FILESTREAM data filegroup cannot be removed unless it's the last
FILESTREAM data filegroup left.” message. Then ignore this message.
vii.     
Remove Blob Store installation
Open SharePoint server
Run RBS.msi setup file and choose Remove option.
Finish wizard.
viii.     
Disable FILESTREAM in SQL Configuration Manager
Disable FILESTREAM in SQL Configuration Manager for your instance (if you do not use it anywhere aside this single content DB with SharePoint), run SQL reset and IIS reset and test.
ix.     
Test the RBS Removed or not?
On the computer that contains the SQL database.
Confirm that size of SQL database (.mdf file).
On the SharePoint farm, upload a file that is at least 100 kilobytes (KB) to a document library.
On the computer that contains the SQL database.
Confirm that size of SQL database.
It must be more than before. If there is no difference then ignore it. Just check it Store is no more in SQL.
x.     
Test user logging
Logging with the 2-3 different users and test they can able to logging.
g.   
Convert classic-mode web applications to claims-based authentication
i.     
Open SharePoint server
ii.     
Open SharePoint PowerShell
iii.     
Execute below script
$WebAppName = "<URL>"
$wa = get-SPWebApplication $WebAppName
$wa.UseClaimsAuthentication = $true
$wa.Update()
$account = "<Domain name\User name>"
$account = (New-SPClaimsPrincipal -identity $account -identitytype 1).ToEncodedString()
$wa = get-SPWebApplication $WebAppName
$zp = $wa.ZonePolicies("Default")
$p = $zp.Add($account,"PSPolicy")
$fc=$wa.PolicyRoles.GetSpecialRole("FullControl")
$p.PolicyRoleBindings.Add($fc)
$wa.Update()
$wa.MigrateUsers($true)
$wa.ProvisionGlobally()
iv.     
Test user logging
Logging with the 2-3 different users and test they can able to logging.
h.  
Take SQL backup from QA server
i.     
Open SQL server
ii.     
Open management studio on SQL server
iii.     
Select the content database
iv.     
Take back up of content database
Information: This SQL backup is not content RBS.
3.   
New SharePoint 2013 environment with SQL 2012
a.   
Restore SQL backup
i.     
Open SQL server
ii.     
Open SQL management studio
iii.     
Restore the SQL database using *.bak file
b.  
Dismount database which is with existing application
i.     
Open SharePoint server
ii.     
Open SharePoint management PowerShell
iii.     
Execute below script
Dismount-SPContentDatabase <Database name>
Note: change the database name which bind with existing application.
c.   
Mount restored database with existing application
i.     
Open SharePoint server
ii.     
Open SharePoint management PowerShell
iii.     
Execute below script
Mount-SPContentDatabase <Database name> -DatabaseServer <Database server name> -WebApplication <URL>
Note:
Change the database name with new restored database name
Change the database server name in form of “DB server name\DB instance name”
Change the URL of web application
This command take some time.
d.  
Upgrade site collection
i.     
Open SharePoint server
ii.     
Open new site
iii.     
You will find message on top “Experience all that SharePoint 15 has to offer. Start now or Remind me later”
iv.     
Click on “Start”
v.     
Click on ”Upgrade this Site Collection”
vi.     
Click on “I Am ready”
vii.     
After some time you will get message “Upgrade Completed Successfully”
viii.     
Test User logging.

Similar Messages

  • A question about SharePoint 2013 CAL

    Hi all,
    I have a question about SharePoint 2013 licensing. We are at the moment using SPS 2010, for 2015 we are going to use SharePoint 2013. We licensed SharePoint 2010 with enterprise CALs and we feel that most of its features are not being used by us. The only
    thing that we use is publishing InfoPath forms to form libraries within SharePoint, do we need to have Full enterprise license to use this feature? Or would the standard CAL suffice to do this function. Any advice would be appreciated.
    Thanks

    InfoPath Forms services is an Enterprise license feature.  Anyone using InfoPath forms will need an Enterprise cal in 2013.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • SharePoint 2013, SQL Server 2012 SP1 Enable RBS for Additional Content Databases

    We Enabled RBS in our SharePoint 2013 Environment recently. The time when we Configuring we had only one Content Database and we successfully configured. now we created more web applications and we need to enable RBS for newly created Content Databases.
    we searched and tried lots of approaches, but we cudn't manage to achieve this. can anyone help us to enable RBS on additional Content Databases. (No offense but direct instructions would be great rather than providing links).
    Thank you!

    Here is step by step instruction with screenshot
    http://thesharepointfarm.com/2011/03/enabling-rbs-on-multiple-content-databases/
    Try to run
    run this command on the SharePoint server: msiexec /qn /i rbs.msi REMOTEBLOBENABLE=1 FILESTREAMPROVIDERENABLE=1 DBNAME=”WSS_Second” FILESTREAMSTORENAME=FilestreamProvider_1 ADDLOCAL=EnableRBS,FilestreamRunScript DBINSTANCE=”DBServer”
    Thank you so much for the reply Indrajeet. we followed the instruction to the letter but when we try the command, it failed. while doing some search, we came across an interesting Article.
    http://rudolphoravec.blogspot.com/2012/10/remote-blob-storage-rbs-and-sharepoint.html
    And surprisingly it is Working.

  • Accessing Sharepoint 2013 externally for domain users and customers

    Just an FYI I am not a SP administrator by any means but have be tasked with taking over this project and could use some assistance.
    Sharepoint 2013 is working fine internally. Users access the site and login with their domain credentials. Our client is moving one of their departments to another building down the street and we'd like them to be able to access local resources without the
    use of another server or site to site vpn or standard vpn. 
    My question is, how do we make Sharepoint accessible outside of their local network? 
    If we open up a port on the router and have it forward all request to Sharepoint server will we be able to access it?
    Also, how will they authenticating with the Sharepoint Server? Do they use the same user credentials?
    I forgot to mention this is Sharepoint 2013 Enterprise Edition. We are also using Project Server 2013 as well.
    Thanks in Advance

    Hi 3s1k,
    According to your description, my understanding is that you want to access the SharePoint site from Internet.
    You need to first ensure that you enable Anonymous Access for your web application. You'll then need to set up DNS for the domain you own to point to your web front end server (or virtual IP if it's load balanced). Then set up the appropraite IIS bindings
    for the web application, and finally you'll need to extend your web application to an Internet Zone and give it the appropriate domain name.
    There are some similar posts for your reference:
    https://social.technet.microsoft.com/Forums/en-US/2277d710-ed05-4613-bd66-fd12e4d64b61/sharepoint-intranet-site?forum=sharepointadminprevious
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/fd968a08-393b-41c0-a916-c48ce0f83104/configure-sharepoint-2013-for-accessing-over-internet?forum=sharepointadmin
    http://sharepoint.stackexchange.com/questions/54315/sharepoint-2013-extranet-acces-outside-the-internal-network
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Configure a sharepoint 2013 site for external and internal access

    I need to configure a local install of sharepoint 2013 so that users can access it internally and externally using windows/AD authentication. The internal and external addresses are different.
    I have bound an external ip to the domain for external access.
    I have created Alternate Access mapping, and bound the host header but I get a file not found message for external access.
    Have I missed something here? why the error and how can it be fixed. Step by step process would be appreciated.

    Hi Luis,
    According to your description, my understanding is that the error occurred when accessing the site externally.
    The most common cause for this is that the IIS host header is configured incorrectly. The 404 will appear because we are hitting a different IIS web site and not the one we are intended to.
    Here is a similar issue for you to take a look:
    http://stackoverflow.com/questions/14953322/sharepoint-2013-404-not-found-while-accessing-site-collection-from-outside
    More references:
    http://technet.microsoft.com/en-us/library/cc261814(v=office.15).aspx
    http://technet.microsoft.com/en-us/library/cc263208(v=office.15).aspx
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Auto update people picker value with email id when we add username in another people picker field in sharepoint 2013 list using javascript

    hi friends
    i have to people picker fields
    pp1 and pp2
    pp1 represents username
    pp2 represents email id
    here i problem is if user enters name in pp1, pp2 has to update with email id of corresponding user in pp1 dynamically.
    using java script is there any solution for this.
    please help me

    Hope below will help
    <asp:Content ID="Main" ContentPlaceHolderID="PlaceHolderMain" runat="server">
    <script type="text/ecmascript" language="ecmascript">
    var user;
    var visitorsGroup;
    function runCode() {
    var clientContext = new SP.ClientContext();
    var groupCollection = clientContext.get_web().get_siteGroups();
    // Get the visitors group, assuming its ID is 4.
    visitorsGroup = groupCollection.getById(4);
    user = clientContext.get_web().get_currentUser();
    var userCollection = visitorsGroup.get_users();
    userCollection.addUser(user);
    clientContext.load(user);
    clientContext.load(visitorsGroup);
    clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
    function onQuerySucceeded() {
    alert(user.get_title() + " added to group " + visitorsGroup.get_title());
    function onQueryFailed(sender, args) {
    alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    </script>
    <input id="Button1" type="button" value="Run Code" onclick="runCode()" />
    </asp:Content>http://msdn.microsoft.com/en-us/library/office/jj246835%28v=office.15%29.aspxhttp://msdn.microsoft.com/en-us/library/office/jj920104%28v=office.15%29.aspxhttp://stackoverflow.com/questions/20981226/sharepoint-2013-get-current-user-javascripthttp://sharepoint.stackexchange.com/questions/31457/get-user-via-javascript-client-object-model

  • Integrate SharePoint 2013 with TFS Online

    I have couple of questions,
    Can SharePoint 2013 be integrated with online TFS?
    Also can online SharePoint be integrated with online TFS?
    Would appreciate any guiding material.
    Thanks in Advance  

    Hi,
    Visual Studio Online(formerly Team Foundation Service/TFS online) is not support to integrate with SharePoint at present. SharePoint online is also not supported. Any suggestions, you can submit a user voice
    here.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to get the people & group field value in sharepoint 2013 editform.aspx using jquery

    i got in sharepoint 2010 by using following-
    var personfield= $("#ctl00_m_g_01cc9f37_2366_400e_aefc_afbe38c5caa5_ff51_ctl00_ctl00_UserField_upLevelDiv");
     var Assigned=personfield.find('span').attr('id');
    But,I want same for sharepoint 2013 .
    Please,tell me
    -Thanks,
    Swapnil

    Swapnil,
    See this link - 
    http://stackoverflow.com/questions/27519795/sharepoint-2013-editform-people-picker-new-value-not-saving
    http://www.sharepointcolumn.com/sp2013-setting-people-picker-value-in-newform-aspx/
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Do you need an additional slot for the RBS and does the RBS count as an additional hard drive in the Sharepoint 2013 Server farm?

    Hello Community
        If you have a clustered Sharepoint 2013 Server farm running RAID 10, on a
    clustered WS2012 R2 server that has 10 hard drive slots:
            (4) drives being part of the Sharepoint 2013 Server farm
            (1) drive for the Web App Server
            (5) are for hot swap if any of the production hard drives fail
        The question(s) is:
            - If the server only has 10 slots for hard drives are you still allowed to add a
    NAS/RBS drive and does the NAS/RBS drive get clustered also, or does this scenario require
    reducing the RAID level down to RAID 5 to allow for NAS/RBS hard drive?
            - Does the NAS/RBS hard drive need a hard drive for hot swap?
            - Does the NAS/RBS drive have to have Sharepoint 2013 Server or WS2012 R2 running on it?
            - Does the Web App Server have Sharepoint 2013 running or just WS2012 R2 running on it?
        Thank you
        Shabeaut

    RAID 10 requires a minimum of 4 hard drives. The LUN for RBS must be attached to the SQL Server, not SharePoint server, as a local drive. You just need to be running the minimum required OS for the version of SQL Server you're using.
    Do you mean Office Web Apps by "Web App Server"? If so, that cannot have SharePoint installed on it. Otherwise, if you're just referring to it as another SharePoint server, yes it would have SharePoint installed on it.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • SSRS 2014 with SharePoint 2013 - Integrated Mode vs Native Mode Questions

    Hi,
    We are using SharePoint 2013 and SQL Server 2014.
    We are building a number of SSRS Reports that pull data from SQL Databases. (Pl note, we are not pulling any data from SharePoint Lists) 
    We have to make a choice between running the Reports in Native Mode or SharePoint Integrated Mode.
    We saw this link: https://technet.microsoft.com/en-us/library/bb326290(v=sql.105).aspx - but it has no updated version for SQL 2014. 
    We have questions on which one to choose - based on what criteria, based on performance (which will be faster), other benefits, pros and cons and also on things that work only on SharePoint Integrated Mode and things that work only on Native Mode.
    Would appreciate guidance on the above.
    Thanks
    Karthick S
    Karthick S

    Hi Karthick S,
    If you had install Sharepoint server, then configure the Reporting Services in Sharepoint mode to take advantage of the Sharepoint. However, when you run a report in the SharePoint integrated mode in SQL Server Reporting Services, the report may run noticeably
    slower than when you run the same report in native mode.More details information please reference to:General overhead performance differences when you view reports in SharePoint integrated mode versus in SharePoint
    native mode
    For more information about the features supported by Reporting Services in Sharepoint Integrated Mode(SSRS 2014), please see below article:
    Reporting Services Report Server (SharePoint Mode)
    Similar thread for your reference:
    SSRS naitive Mode VS Share Point Integrated Mode
    SQL Server Reporting Services - Native Mode or SharePoint Integrated Mode?
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • Migrate Sharepoint 2007 to sharepoint 2013 questions

    I am in the process of moving sp 2007 to 2013 using db attach/detach. I have some questions.
    1) Should I do visual upgrade in 2010, then migrate to 2013  or wait until 2013 and do visual upgrade?
    2) Should I convert to Claim in 2010, then migrate to 2013 or wait until migrate to 2013 then convert to claim. 
    3) What happen if i attached db that was ntlm to web application that currently use use claim?
    4) any good article show step by step and things to look for?

    1) You must do the visual upgrade to 2010 prior to migration to 2013. SharePoint 2013 does not support the 2007 UI look and feel.
    2) Personally, I convert to Claims in SharePoint 2013. Given you're running 2013 SP1 with the April 2014 CU (I recommend Sept 2014 CU) or higher, the conversion will be quicker.
    3) Windows Claims is just NTLM or Kerberos. You would need to re-covert. If you're converting in 2013, after you attach the Windows Classic-enabled db to the Claims-enabled web application, you would run Convert-SPWebApplication.
    http://technet.microsoft.com/en-us/library/cc263299(v=office.15).aspx
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • SharePoint 2013 Enterprise and SQL Server 2012 Standard edition vs. Enterprise - feature question

    I can't seem to find any clear answers to the implications of installing SQL Server 2012 standard edition vs. enterprise in regards to SharePoint 2013. 
    I understand that to get many of the features you need Enterprise edition of SQL 2012; but, what I can't figure out is if the backend SharePoint SQL 2012 is standard; but, the PowerPivot/SSRS server is Enterprise will we still get the features?
    If we have 3 tier SharePoint farm, one of those tiers is for the SQL Server database backend.  If that SQL instance is 2012 standard and we add another server to the farm w/ SQL 2012 Enterprise to handle the tabular models, PowerPivot, and SSRS in integrated
    mode will we still get the features?
    Or, can we (should we) install Enterprise 2012 as the SharePoint database backend and let that instance triple down as also the PowerPivot and SSRS instance?
    The Degenerate Dimension

    Hi MMilligan,
    SQL Server 2012 Standard is not supported PowePivot for SharePoint . In addition, SQL Server 2012 Standard is also not support some Reporting Services Features.
    For more information, please refer to Features Supported by the Editions of SQL Server 2012:
    http://msdn.microsoft.com/en-us/library/cc645993.aspx.
    Install SQL Server BI Features with SharePoint 2013 (SQL Server 2012 SP1):
    http://msdn.microsoft.com/en-us/library/jj218795.aspx.
    If you have any problem, please feel free to let me know.
    Thanks.
    If you have any feedback on our support, please click
    here.
    Maggie Luo
    TechNet Community Support

  • Sharepoint 2013 -webpart question

    hi,
    I need to create a page that will display list items based on a value users enter in drop-down or text box. This would contain the months of the year.  Then, I need to display the list items based on that selection.  I would include the month
    field  in that list.
    Is there a web part that will do this?  My manager doesn't want me to create a content query web part, he wants it out of the box.
    Thanks
    mhoran

    hi
    use list view web part+filter webpart
    SharePoint 2013 Out of Box Web Parts
    yaşamak bir eylemdir

  • Remote Blob Storage for SharePoint 2013

    Hi,
    We have a Site Asset library in SharePoint 2013 for which we would like to connect it to the external storage or network shared drive. I read few articles related to RBS, most of them talks about using the same sql server hard drive as a external storage
    instead of Content Database. Here we would like to connect it to the shared drive which is completely on the different server. Is it possible?
    My other question is what edition of SQL server do we need to have in order to enable the RBS?
    Thanks in Advance
    Ali

    Hi Ali -
    This forum is dedicated to Rights Management Services, which cannot help you with your current issue.  I would recommend reposting this question in the SharePoint fourm here:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/home?category=sharepoint
    Thanks,
    Micah LaNasa
    Synergy Advisors
    synergyadvisors.biz

  • How to create a quarterly view in SharePoint 2013

    How do you create a 3 month view in SharePoint 2013, preferably without adding code?

    Hi 
    you can create two additional calculated column to do.
    http://blog.pentalogic.net/2009/11/howto-filter-items-current-calendar-month-view-sharepoint/
    http://iwillsharemypoint.blogspot.in/2012/03/sharepoint-list-view-of-current-month.html
    Rajendra Singh
    Walking on water and developing software from a specification are easy if both are frozen
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

Maybe you are looking for

  • What exactly the auditing team will or should check in my database.

    Dear all, i am using oracle 10g database on windows server 2003 and oracle application server 10g on windows server 2003. now an internal auditing team is going to audit my database. i want to know what they will audit so that i do preparation for it

  • Migration Error - Cannot Insert Null Into MD_PROJECTS.ID

    Environment: Oracle 11g (11.2.0.2) SQL Server 2008 R2 SQL Developer 3.0.03 Build Main-03.97 Problem: We are migrating a SQL Server DB to Oracle and will need to perform this repeated times using updated versions of the SQL Server DB. I successfully d

  • XI 2004s configuration

    Hello everybody, Does anyone have an idea of how long it takes to configure XI 04S? and what are the material requirements? I'm new in XI and i worked on the configuration of XI 3.0 but i haven't allready configured XI 2004s, so i wondered how long i

  • Iweb auto adjust for different computer monitor settings

    Nobody has the same display settings on their monitor, so how can I get iweb to auto adjust to different computer monitor settings?

  • Moved my library and screwed up!  Please help.

    I moved my iTunes library from my C drive to my G drive(or so I thought). I changed the path in the preferences to G:\iTunes\iTunes Music. My problem is that my purchased music is showing up, but my CD library is not. It looks like I have some of the