Viewing 15 posts - 1,951 through 1,965 (of 2,458 total)
DDL is always helpful for getting a good answer faster.
Below is the DDL and solution to your problem. Note that some columns are not necessary; I included them so...
May 29, 2014 at 1:15 pm
I would start with The Microsoft Data Warehouse Toolkit: With SQL Server 2008 R2 and the Microsoft Business Intelligence Toolset.
Though the book is based on the SQL Server 2008...
May 29, 2014 at 6:28 am
ricardo_chicas (5/23/2014)
I am using sql server 2008 r2 sp 10
I have a database that originally consumed 500gb, I truncated most of the tables and now the biggest table consume around...
May 23, 2014 at 12:16 pm
Please include some DDL next to so as to get a faster response (note the link in my signature for getting help here).
That said, I think this is what...
May 22, 2014 at 2:12 pm
mickyT (5/20/2014)
Here's another method using the same splitter and with the same conditions as Alan's. I though cube may give you the results you need
declare @string varchar(500) = 'Carborator...
May 20, 2014 at 1:58 pm
Megha P (5/20/2014)
once again thanks..your code works correctly :-).
meanwhile i come up with below code..just to share
/* Data generation for #LocalTempTable */
DECLARE @Date1 datetime
DECLARE @Date2 datetime
SET @Date2...
May 20, 2014 at 11:56 am
Using the splitter function referenced in my signature you could do this.
declare @string varchar(500) = 'Carborator Break Engine Oil';
declare @tblPattern table (ID INT IDENTITY, Pattern VARCHAR(500), PatternIdentifier INT);
;WITH split1 AS...
May 20, 2014 at 11:15 am
davoscollective (5/19/2014)
Alan.B (5/18/2014)
May 20, 2014 at 8:42 am
I did not address the weekend requirement but came up with something that will calculate days, hours and minutes. The only thing left to do is calclulate how much of...
May 19, 2014 at 11:06 am
Your update query should be fine and, no, it does not matter if you include the table in the FROM or table operator clauses (e.g. JOIN & APPLY).
With the...
May 18, 2014 at 5:41 pm
Taking it one step further...
DECLARE @dt DATETIME;
SET @dt = '2014-04-01';
SELECT left(DATENAME(month,@dt),3)+'-'+ right(YEAR(@dt),2)
May 16, 2014 at 9:10 am
First, I do believe you can do this with using LAG. I don't have access to a 2012 instance at the moment; otherwise I could post an example.
That said,...
May 13, 2014 at 2:25 pm
SQLRNNR (2/19/2014)
One question I think could be answered and would be very useful to those noobs to CLR.
How do you get the varbinary representation for...
February 19, 2014 at 10:58 am
5 stars! I just finished this and really enjoyed it. This is turning into a very excellent stairway Solomon and I can't wait to read the rest of the "levels"....
February 19, 2014 at 7:58 am
Luis Cazares (2/7/2014)
February 11, 2014 at 4:08 pm
Viewing 15 posts - 1,951 through 1,965 (of 2,458 total)