Viewing 15 posts - 1 through 15 (of 29 total)
My colleagues are visiting the sites anyway to perform training and I though it would save time - potentially it wont though.
Can I not just attach the mdf to an...
May 31, 2012 at 5:52 am
True - I should stop taking the easy way out! -S switch you say....
I really only want the data from the PC - and to make sure it isnt accessible...
May 31, 2012 at 5:06 am
Thanks John
I've just tried it using a batch file to stop the SQL Service and then copy the mdf and ldf to a datastick which worked fine
Thanks
Craig
May 31, 2012 at 4:46 am
Thanks for this - however when I'm testing it I get the an error stating
Named Pipes Provider could not provide a connection to SQL Server
SQLcmd: Error: Microsoft SQL Native...
May 31, 2012 at 4:27 am
Unfortunately they are not all in the same place
I have a team of 10 (non technical) people who are going to visit each location with a memory stick to remove...
May 30, 2012 at 8:37 am
My bad! AWE shouldn't have been on!
Must have clicked it by mistake and hadn't noticed - doh
Thanks anyway
September 24, 2010 at 7:09 am
Thanks, I'll take a look now.
February 8, 2010 at 4:17 am
I'm just using the filter menu in report builder, and selecting the relative date of 'yesterday', I've also tried 'n' day ago - but get the same result.
As you might...
January 29, 2010 at 5:16 am
I think this it
="To : " & Parameters!LastOrderDate.Value
Thanks
January 29, 2010 at 5:08 am
Doh!
No I wanted a date 1 year and 8 days ago...
learning all the time, just not quick enough eh 🙂
This is what I was meant to do...
DECLARE @startDate datetime;
DECLARE @enddate...
January 14, 2010 at 5:47 am
Thanks for this
If I run this
DECLARE @startDate datetime;
DECLARE @enddate datetime;
SET @startDate = dateadd(year, -8, dateadd(day, datediff(day, 0, getdate()), 0));
SET @endDate = dateadd(year, -1, dateadd(day, datediff(day, 0, getdate()), 0));
SELECT SUM(transactionamount)
FROM...
January 14, 2010 at 5:01 am
Thank you.
My sql is obviously running for a date range that is equal to or greater than the specified date, so when I run the script for 1 year ago,...
January 12, 2010 at 3:26 am
I'm currently using SQL Server 2005 and SQL Server Express 2005, is there anything available for this version?
I'm not sure they'd go for a SQL upgrade at the moment.
Thanks
--Edit, or...
December 16, 2009 at 2:59 am
Viewing 15 posts - 1 through 15 (of 29 total)