Viewing 15 posts - 226 through 240 (of 455 total)
i have always used SQL Server IO Simulator. Its free from Microsoft.
http://support.microsoft.com/kb/231619
If you need to test your app code as it pertains to the database, you need to...
October 18, 2011 at 5:24 am
Nice article Kim. I like how you make your email notifications with html encoding to make it pretty. Something I like to do also. ๐ ๐ ๐
August 18, 2011 at 4:49 am
Awesome article. Thanks for the effort, Jeff.
May 2, 2011 at 5:31 am
it requires down time. do it now.
http://walter.thyselius.org/data/howto/vmware-expand-windows-disk.html
April 29, 2011 at 9:06 am
yes. even though you choose to install on D:, a little bit of stuff still lands on C:. mostly shared components. small amount of data.
as a side note, 20 GB...
April 29, 2011 at 8:31 am
be careful if you are running that mirror with a witness server. I have seen mirrors fail over during such routines. re-index is extremely log intensive. if your network /...
April 29, 2011 at 8:03 am
its telling you that the first DB that is running log shipping is using that directory.
when you add the second DB to the same directory structure, the delete function will...
April 29, 2011 at 7:56 am
nice article. I like the ability to schedule the scan with the agent. Will be very helpful @ my current employer. Thanks.
April 19, 2011 at 3:29 am
Hey Vadim,
thanks for the script. however, it presents a bit of a problem when you have multiple instances on a server.
it also does not account for 'other' CPU hogs. i...
March 11, 2011 at 11:53 am
currently, the company i am at has everything running on VM's. the ESX servers all have 32 GB of RAM each and SQL is given anywhere from 16 GB...
March 11, 2011 at 5:12 am
is column closedate a datetime datatype?
if it is not, you will have to do something like this;
where [closedate] > CONVERT(VARCHAR(10),getdate()-30,121)
and [closedate] < CONVERT(VARCHAR(10),getdate(),121)
or
where [closedate] > CONVERT(VARCHAR(10),getdate()-30,111)
and [closedate] < CONVERT(VARCHAR(10),getdate(),111)
depending...
March 8, 2011 at 1:26 pm
some one at one point installed SQL Trace Analyzer
March 8, 2011 at 1:20 pm
have you "Enabled" the mail profile under the SQL Server Agent...
Open SSMS -->
Right click on SQL Server Agent -->
Choose Properties -->
choose Alert System -->
put a check mark on the Enable...
February 9, 2011 at 12:11 pm
williamaffandi (2/7/2011)
I have some trouble exporting a table with a varbinary(max) column in it.
The table currently have 530 rows ( and expanding)
Each of the varbinary(max) column have around 44000 characters.
And...
February 8, 2011 at 8:14 am
Viewing 15 posts - 226 through 240 (of 455 total)