Viewing 15 posts - 121 through 135 (of 3,011 total)
If these are dates coming from Excel, be careful if your data has very old dates.
Excel sees the years 1900 as a leap year (a legacy from Lotus 1-2-3), so...
January 15, 2014 at 7:35 am
You can use snapshot isolation after you enable it for that database, but you will need to set the isolation level to snapshot on each connection or stored procedure that...
January 10, 2014 at 9:38 am
homebrew01 (1/8/2014)
January 8, 2014 at 4:27 pm
I don't really see anything wrong with your logic.
Have you verified that there actually are updates being performed? Are there any other triggers on this table? Could the...
January 8, 2014 at 3:48 pm
homebrew01 (1/8/2014)
January 8, 2014 at 3:10 pm
sayedkhalid99 (1/3/2014)
thanks Michael Valentine Jones for you solution if you could find time please change your solution to example i provided above.
Is there some reason why you can't do that...
January 3, 2014 at 2:08 pm
born2achieve (1/3/2014)
Thanks what i did already
declare @MyData table (Id int not null, StartDate datetime not null, EndDate datetime not null )
insert into @MyData
select 101 as Id,'2014-01-14 13:30:00.000' as...
January 3, 2014 at 1:58 pm
born2achieve (1/3/2014)
Thanks for your response.
On your sample you are hardcoding the Currdate
set @CurrDate = '2014-01-15 23:59:59.997'
But i wanted to check the getdate() falls b/w 1st to 15th...
January 3, 2014 at 1:39 pm
homebrew01 (1/3/2014)
SELECT * INTO Trace_20131229
FROM fn_trace_gettable('F:\TraceFiles\MyTrace_x131123_x2330_54.trc',...
January 3, 2014 at 1:00 pm
homebrew01 (1/3/2014)
January 3, 2014 at 11:50 am
You can run a query on the source server to get the filename:
select top 1
bs.database_name,
bmf.physical_device_name
from
msdb.dbo.backupset as bs
inner join
msdb.dbo.backupmediafamily as bmf
on bmf.media_set_id = bs.media_set_id
where
bs.database_name = 'master'
and bs.type = 'D'
order by
bs.backup_start_date desc
database_name...
January 3, 2014 at 11:45 am
This query seems to do what you want with the first result with the date before the 16th of the month and the next result for on or after the...
January 3, 2014 at 11:24 am
Here is another method using the PARSENAME function to split the elements when you have 4 or fewer elements.
-- Parse up to 4 '.' delimited elements and sort by numeric...
January 3, 2014 at 9:07 am
Have you tried using the command line version of WinRAR, so that it does not generate an error dialog box?
Using the WinRAR Command-line tools in Windows
http://comptb.cects.com/2503-using-the-winrar-command-line-tools-in-windows
January 2, 2014 at 8:13 am
Markus (1/2/2014)
Michael Valentine Jones (1/2/2014)
January 2, 2014 at 7:50 am
Viewing 15 posts - 121 through 135 (of 3,011 total)