Yes, SQL Server is a great app to run within a VM, see: <a href=”http://blogs.technet.com/virtualization/”>blogs.technet.com/virtualization/</a> for more information. Also, with the Management Packs from OpsMgr, understanding how your SQL VM is running is a snap. ————- Yes you can run SQL within a VM, provided that the resources required by the SQL Server database can [...]
Use the WITH ENCRYPTION flag. Keep in mind that it takes all of about two seconds to decrypt stored procedures within SQL Server.
See <a href=”http://itknowledgeexchange.techtarget.com/itanswers/sqlrpgle-result-set/”>SQLRPGLE – Result Set</a> and any number of other links. Pay special attention to the statement “The interfaces that can work with stored procedure <b>result sets</b> include JDBC, CLI, and ODBC.” You can call stored procs from SQLRPG. But if you want to process a result set rather than accessing an updated parm [...]
You are going to most likely have to right what you need in a VB..Net or C# script. I have one that inserts into table A, gets a value from an identity column and uses that to insert into table B. Sounds like that is what you are looking to do. –josef
Operations Manager is designed to monitor health and performance of operating systems (both physical and virtual) as well as workloads running on those systems (like SQL and Exchange). Operations management packs exist for the workloads you mention (including SQL 2000, 2005 and 2008, along with Exchange 2003, 2007 and 2010), as well as other workloads, [...]
Note that you shouldn’t care. QADBIFLD isn’t really for your consumption and you possibly should act as if it doesn’t exist. What you want to pay attention to are the VIEWs that are built over QADBIFLD (and over similar DDS PFs in QSYS). In your specific case, the VIEW that you’d be interested in would [...]
<pre>select top 1 salary from Emp where salary not in (select top 1 salary from Emp order by salary desc) order by salary desc</pre> I would recommend you <a href=”http://www.sql-ex.ru”>sql-ex.ru/</a>.
Are you looking for the error msg? The joblog will have the cause of the failure. On the SBMJOB command, change the log level to produce a joblog upon completion. Prompt SBMJOB, press F10, scroll down twice and you will see Message logging. Change the Level to 4, Severity to 0, and Text to *Seclvl. [...]
Disk and RAM (memory) are different things. When you open a remote file, it is opened using client’s <b>memory </b>(not disk), so in normal situations your free disk space is not affected. You can use the Windows Task Manager (Performance and Processes tabs) to see statistics about resources usage. The OS may use disk space [...]
NEVER delete the log file. Simply change the database from bulk logged to simple. Then you can shrink the log file down. If you log file is growing simply being doing log backups on it and it won’t grow out of control any more.
You would need to restore the Thursday backup then move the rows into the database. If you use identity values for your records you’ll need to change the identity values of the rows in the Thursday backup so that they don’t conflict with the new rows which have been inserted.
To do this you’ll need to create a new LUN on the SAN and present it to SQL_SVR_A. Then stop the SQL Server, move the database files to the new smaller drive, keeping all the folder paths the same. Switch the drive letters on the two volumes. Then start the SQL Server Service again. All [...]
If you are using SQL 2005 or newer you can next sp_MSforeachtable within sp_MSforeachdb. If you are using SQL 2000 or older you’ll need to use a cursor outside the sp_MSforeachtable. Something like this should do the trick. <pre>declare @db sysname, @sql varchar(4000) declare cur CURSOR FOR SELECT name from sysdatabases where name <> ‘tempdb’ [...]
Doing this isn’t nativly suppoted in 2000. <a href=”http://windowsitpro.com/article/articleid/14035/how-do-i-encrypt-fields-in-sql-server.html”>Here</a> is an article about it. I have done it by using System.Security.Cryptography in .net and either binary, varbinary, or image data type in the database. You can also convert the bytes to a base64 encoded string in .net and save it in the database in a [...]
If your vendor says that it can’t be upgraded beyond SP2 I’d ask them why. SP3 is pretty much the standard SP to support as SP3 includes the code which prevents the SQL Slammer worm. I’d also ask them why they are forcing you to use tech that is two generations old and 7+ years [...]
A 64bit upgrade will definitely help. Pretty much as much RAM as you can afford is a good thing. RAM up to about 64 Gigs is pretty inexpensive. After that the price starts to go up a lot. How many cores does each CPU have? You’ll want at least 4 cores per CPU.
If Diskeeper is trying to install MSDE then you’ll need to have them correct the installer so that it doesn’t cause the problem.
Instead of truncating the log you need to either backup the log, or change the database to simple recovery. If you backup the log then you can restore the database to a specific point in time and the log will be cleared automatically. If you don’t need the ability to restore to a specific point [...]
SQL Express doesn’t support maintenance plans so the Tools don’t include those options. To use Maintenance plans you’ll need to get the Workgroup or above edition of SQL Server 2008.
I think we need some more detail. Do you have TCPIP set up on the AS/400? Can you ping the IP Address of the AS/400 from another server or PC? From which box are you getting the error message? When you go into the TCP/IP Settings do you see that IP you have configured as [...]





