SQL Server doesn’t track the number of changes to the database is a counter you can grab. The best way to figure this out is to work with the application developer and see how many database calls there are, and how many of those are read and how many of those are writes. Then work [...]
If you mean moving the DB to another server with SQL2005 it’s one thing; if instead you need to upgrade the existing SQL2000 it’s a “next, next, continue” process. please be more specific. This is Md.Aves You need to take backup of ur database from SQL 2000 for that you have to write this query [...]
<pre></pre>
Yes you can do an in place upgrade of the SQL Server on the cluster. Take a look at the February 2010 issue of <a href=”http://www.sqlmag.com/article/clustering/upgrading-a-sql-server-2005-cluster-to-a-sql-server-2008.aspx”>SQL Server magazine</a>, in it I’ve got an article which covers how to go the upgrade step by step.
Access to SQL Server from a different platform is done the same way almost all databases are accessed cross-platform. Download the driver from the vendor for the platform you’re running on. The only driver that I’m aware of that Microsoft currently makes available that will run on your AS/400 is the <a href=”http://www.microsoft.com/downloads/details.aspx?FamilyID=a737000d-68d0-4531-b65d-da0f2a735707&displaylang=en”>Microsoft SQL Server [...]
Well your problem is that you have all the data stored on the same physical disks so you are causing all sorts of contention on the disks. If you are using 8 drives in a RAID 10, then you actually only get to use 4 as the other 4 are a mirror of the first [...]
Thanks to everyone who participated in the Xbox 360/Amazon contest. And a big congratulations to our winners: <a href=”http://itknowledgeexchange.techtarget.com/profile/Mattmather/”>Mattmather</a> and <a href=”http://itknowledgeexchange.techtarget.com/profile/RichS/”>RichS</a> take home the Xbox 360s and <a href=”http://itknowledgeexchange.techtarget.com/profile/Carlosdl/”>Carlosdl</a>, <a href=”http://itknowledgeexchange.techtarget.com/profile/Technochic/”>Technochic</a>, and <a href=”http://itknowledgeexchange.techtarget.com/profile/Mrdenny/”>Mrdenny</a> take home the Amazon gift cards. Everyone else, keep earning points by <a href=”http://itknowledgeexchange.techtarget.com/itanswers/ask_question/”>asking</a> and <a href=”http://itknowledgeexchange.techtarget.com/itanswers/?tab=unanswered#questions”>answering</a> questions and taking [...]
I don’t think such a function exists. The <a href=”http://download.microsoft.com/download/e/c/8/ec8d5025-7ef7-4dcc-a9f3-9c297cf5350e/SSMAOracle.docx”>Guide to Migrating from Oracle to SQL Server 2005</a> specifies that the Oracle’s DECODE function is converted using standard T-SQL mapping (using a CASE-WHEN construct). That is also the case when migrating to SQL Server 2008.
Is the Scheduler passing parameters into the stored procedures? Are any values defined differently depending on the execution steps? If so, I would start with checking those values. Since the two do not error in stand alone mode, I would think the errors are not initiated from a database query. But, do not eliminate any [...]
Create a SQL Agent job that is configured to run at startup. Every time the agent starts it will send out an email. Every time failover happens the SQL Agent will be restarted.
This is normal and isn’t something to worry about. The tables on the subscriber are written in a different order than the tables were on the publisher, and the tables on the publisher probably have a lot more white space hidden through out the database file than the subscriber does.
have you tried it as *DEC (n n) where n n is the length and number of decimal places? ========================================================= A QM query can’t return a value to CL. CL can’t call stored procs. Some different process needs to be developed. Actually, it seems to be a very long way around what should be simple. [...]
A function with return type VARCHAR2 will produce this error when used in a query if it returns more than 4000 bytes, because that is the max size of a database’s varchar2 type (as opposed to the pl/sql varchar2 type which can hold up to 32737 bytes). You might probably avoid that error by changing [...]
Thank you for visiting ITKE. We are happy to help you with solving specific IT questions, but need as much information as possible to do so. Let us know about the problem you are trying to solve, how you are approaching it and what work you’ve done so far, and we can help guide you [...]
<pre>SELECT a.column_x, a.column_y FROM table1 a JOIN table2 b ON a.column_z = b.column_z WHERE b.column_w = <something> AND …</pre> If you need a more specific answer, please provide more details.
The mdm.tblStgMember table is basically the schema that the data will be stored in. Where mdm.tblStgMemberAttribute is the values. The whole MDM thing is very complex. I’m glad you liked the articles.
There are multiple ways. You can use a 3rd party product like XoSoft or DoubleTake. Another option could be to nightly dump your database within SQL to a centralized location where the spare server can nightly copy to a local volume for “future” use. +++++++++++++++++++++++++++++++++++ Another option via <a href=”http://sqldump.sourceforge.net/ “>Open Source</a> ++++++++++++ You can [...]
Yes it will. Forefront Endpoint Protection is built on System Center Configuration Manager (it will require Config Manager 2007 R2 and above). So it provides a unified management infrastructure for systems management and client security. So all the platforms supported by Configuration Manager 2007 R2 can be used for FEP 2010.
You’ll need to setup an SPN for the service using the SETSPN command on a domain controller.
You’ll want to use the BACKUP DATABASE command to backup the database to a .BAK file. You can them backup this file up to tape as needed. You can use the SQL Agent to create a job to backup the database every day. If you need point in time recovery you’ll need to also schedule [...]





