Viewing 15 posts - 5,326 through 5,340 (of 26,490 total)
sharonsql2013 (5/4/2015)
Monday So, Need to see May 4 , 2015 , May 11, 2015 , May 18,2015
So this will work:
declare @ThisDate datetime;
set @ThisDate = getdate();
with ThreeWeek as (select rn...
May 4, 2015 at 2:44 pm
And to get you started, here is what I would do on the fly:
declare @ThisDate datetime;
set @ThisDate = getdate();
with ThreeWeek as (select rn from (values (0),(1),(2))dt(rn))
select dateadd(wk, datediff(wk, 0,...
May 4, 2015 at 2:27 pm
sharonsql2013 (5/4/2015)
For this week this is what I have come up with :
Select DATEADD(dd, -(DATEPART(dw, '2015-05-06...
May 4, 2015 at 2:18 pm
Luis Cazares (5/4/2015)
Lowell (5/4/2015)
duplicates are typically removed by using a...
May 4, 2015 at 1:43 pm
You have two choices. One, license the physical hardware on which your VM run. Two, license the VM on which SQL Server will run. Using Standard Edition,...
May 4, 2015 at 1:31 pm
Jack Corbett (5/4/2015)
Lynn Pettis (5/4/2015)
Jack Corbett (5/4/2015)
May 4, 2015 at 12:43 pm
It really comes down to "it depends." Can't say either is right or wrong.
May 4, 2015 at 10:26 am
Or create a new column with ne collation, move the data from the old column to the new column, drop the old column, rename the new column to the old...
May 4, 2015 at 9:56 am
I have to agree as well. I have almost 20 years experience and I know that I don't know everything. I still have a lot more learn as...
May 4, 2015 at 9:50 am
I see it as creating flexibility regarding the database. Some databases may always be small, but for those that become large, being able to move things around to new...
May 4, 2015 at 9:31 am
djackson 22568 (5/4/2015)
RonKyle (5/4/2015)
Changing...
May 4, 2015 at 9:24 am
Jack Corbett (5/4/2015)
Please help me fix this poorly...
May 4, 2015 at 9:11 am
Eirikur Eiriksson (5/3/2015)
SQL-DBA-01 (4/30/2015)
Whenever I'm runing query against the below database alone, it throws me the error. Any suggest why this happens?
use [AdventureWorks_2005]
SELECT * FROM dbo.sysFILES
OR
SELECT ...
May 4, 2015 at 9:08 am
Jeff Moden (5/4/2015)
Jack Corbett (5/4/2015)
Please help me fix...
May 4, 2015 at 9:05 am
Sorry I didn't get to this sooner, but here is an untested shot of what you need.
I am posting it as an attachment as I seem to be having issues...
May 4, 2015 at 9:00 am
Viewing 15 posts - 5,326 through 5,340 (of 26,490 total)