Viewing 15 posts - 61 through 75 (of 125 total)
Hi,
You could also use the sp_helpjobactivity for a start_execution_date and no stop_execution_date for that info perhaps?
April 25, 2013 at 8:20 am
We are mainly running 2008 in differing flavours. I have not seen any business reasons that have made me consider the additional cost of the new licensing model for the...
April 19, 2013 at 10:00 am
logicinside22 (12/30/2011)
« SQL SERVER – Recycle Error Log – Create New Log file without Server RestartSQLAuthority News – SQL Server Denali CTP1 –...
April 16, 2013 at 6:56 am
Gabriel P (3/28/2013)
March 28, 2013 at 11:06 am
JeepHound (3/28/2013)
March 28, 2013 at 11:01 am
You would need to question why you would be doing this. Unless there is a reason for the data to be phsically ordered and to be unique by those two...
March 28, 2013 at 10:58 am
Manual is safer but.. I have used this in the past for setting an isolation level. You could adapt this
--SET ALL SP's to BE READ COMMITTED
SELECT
o.OBJECT_ID
, name
,REPLACE(REPLACE(REPLACE(s.definition, 'CREATE PROCEDURE',...
March 28, 2013 at 5:42 am
Connect to the SSIS instance via SSMS and then look at the build number in the brackets or right click and goto reports > standard reports > general and look...
March 28, 2013 at 3:49 am
Perhaps look along the filestream options in SQL server or varbinary datatypes
March 28, 2013 at 3:35 am
I may have mis-understood what you are after and this is by no means the most efficient but I think this may be what you are after
DECLARE @WeightValue SMALLINT =...
March 28, 2013 at 3:16 am
Amend your dataset so that it returns the data without the spaces like ..
SELECT REPLACE('test space', ' ', '')
March 27, 2013 at 11:02 am
perhaps use EXEC sp_MSforeachdb @command1='use ?; SELECT * FROM mytable' ?
March 27, 2013 at 10:55 am
From what I remember, Litespeed does not create any extra, above what a normal backup strategy would i.e. backup history, etc. That would be outside of your sizing requirement
March 6, 2013 at 9:48 am
An oldie, but I thought I would reply - Once a database is registered as a data tier you can update that database with an existing dacpack
March 5, 2013 at 2:14 pm
Try recovering from a backup first and then if that does not work try the following : http://www.sqlskills.com/blogs/paul/creating-detaching-re-attaching-and-fixing-a-suspect-database/
January 29, 2013 at 3:59 am
Viewing 15 posts - 61 through 75 (of 125 total)