If you have the SQL 2005 version of the database, you can restore (or attach) that database to a SQL 2008 server and it will automatically upgrade it.
Enjoy the chapter and be sure to check out the related <b>SQL Server</b> resources listed at the bottom of the chapter download page. Voice your feedback on this chapter or let us know of other books you’d like to see featured on the <a href=”http://itknowledgeexchange.techtarget.com/bookworm/”>IT Bookworm Blog</a> by visiting the chapter and leaving a comment. [...]
You can use Administrative Tools -> Performance tool to monitor the server CPU and memory utilization.
When you attach the database you need to product the MDF, and LDF as well as any NDF files that were created. If you don’t have the LDF you can attempt to attach just the MDF file using the sp_attach_single_file_db system stored procedure. If that doesn’t work you’ll need the origional LDF file that was [...]
By running the sp_detach_db and sp_attach_db stored procedures.
You need a previous backup to restore and them import the table.
The alert is being generated because you have Quoted Identifiers off when you are running it. Remove the double quotes and replace them with square brackets. In SQL Server the double quote isn’t the default separator. This would make your code look more like this. <pre>DECLARE @tblName varchar(30) SET @tblName = CONVERT(VARCHAR(20),GETDATE(),112) + ‘Table’ DECLARE [...]
i got answer from my team mates that , its by default *Off. If this is wrong, kindly lemme know..
Well, obviously the View creates those extra line items because you have several notations per quote. You say that you want to suppress those extra line entries. Does this mean that you are not interrested in those extra notes at all? If so, you can modify QUOTE_Binary_to_notes: <pre>SELECT TYPE, n.OWNER_ID , CONVERT(varchar(8000), CONVERT(binary(8000), NOTE)) AS [...]
Has SAP been implemented at a shipping company? Absolutely and there are many examples. I suggest a review of sap.com. Register your e-mail on the site if you wish to do so. There is no cost and it helps in your search. So search on sap.com for functionality on shipping. Some of the more interesting [...]
You need to purchase <a href=”http://www.sap.com/solutions/sapbusinessobjects/sme/reporting/visualstudio/index.epx”>Crystal Reports for Visual Studio .NET</a> or Crystal Reports Developer Advantage licenses.
Use a script task to change the connection string properties of the connection object that the source of the data flow is using.
First you need to get rid of the Substring function in the where clause. Using any functions against the columns in the where clause will kill your performance as your index becomes useless. Instead you should be doing something like this. <pre>select ID,AuditMaster_ID,CallTo,CallTypeTag into Auditdata_callto from auditdata where AuditData.TATCallType is null and AuditData.CallTo LIKE ’00500004%’ [...]
First, backup your databases in case something goes wrong. Then, use the sp_detach_db and sp_attach_db system procedures to detach and then attach your databases. If users are trying to connect it may help to set single user mode on the databases. After you detach the database with sp_detach_db you can move the files, then use [...]
You can create a single cluster that spans the two sites. This requires that both SANs are able to talk to each other and do async replication between them. The more common technique is to use database mirroring between the two sites.
You’ll need to setup a web method on the public site which calls the private URL. We do this on our site to give our customers access to the reports server. I’m not sure the exact methods used, but the basics to Google will be that you are looking for code to create a proxy.
OK, I will now answer my own question. The count for each Group was appearing at the top of each group BECAUSE the concatenated column (4 fields stuck together) was not a column in the report. I have the individual fields, so I did not put the concatenated column in the report. I put the [...]
<b>Background Information:</b> The CROSS APPLY does a Cartesian join between the tables. Depending on what’s being joined, this can cause the run time of the query to increase as SQL is taking the number of rows in the first table times the number or rows in the second. CROSS APPLY <i>can</i> solve some problems that [...]
Yes .. to SQL commands in SQLRPGLE No, I don’t beleieve it extends to F-Spec based commands You need the STRCMT and the COMMIT of the F-Spec I think you will need two commit’s and two rollbacks Remember. records will be locked by both processes and not available for change until the commit/rollback. Phil
It can be, provided that the request is sent through the normal approved change process. If a developer walks up to you and asks you to delete data from a table, then its probably not an approved change. However if that request comes to you through the proper change control procedures then yes. No one [...]





