Viewing 15 posts - 7,966 through 7,980 (of 8,760 total)
I see steadily increasing demand for SQL Server professionals, it is the de facto database platform for small and medium enterprises, and one of M$ best money buckets.
😎
June 18, 2014 at 11:49 am
Further on Jason's advice
😎
USE tempdb;
GO
create table dbo.names (Place varchar(50));
insert into dbo.names ( Place) values ('(1)');
insert into dbo.names ( Place) values ('(100)');
insert into dbo.names ( Place) values ('(200)');
SELECT
...
June 18, 2014 at 11:43 am
Lynn Pettis (6/18/2014)
Grant Fritchey (6/18/2014)
SQLRNNR (6/18/2014)
jasona.work (6/18/2014)
GilaMonster (6/17/2014)
"No pressure to...
June 18, 2014 at 10:49 am
raju.venkatsv (6/18/2014)
request you to provide some hints or some information , using which i can update my trigger to meet business requirement.z
requesting you for...
June 18, 2014 at 10:28 am
mickyT (6/16/2014)
DECLARE @smiley varchar(20) = 'Dont Worry Be Happy';
WITH Params AS (
SELECT MAX(CASE WHEN ItemNumber = 1 THEN Val END) OFFSET,
MAX(CASE WHEN...
June 18, 2014 at 10:17 am
trikha.ishan (6/18/2014)
I tried to update the .dtsx file using notepad in development server and that change is in Script Component but when I ran the package that change didn't reflected...
June 18, 2014 at 10:06 am
Gazareth (6/18/2014)
MS's comments on this: http://support.microsoft.com/kb/86903There's another link on the page to more detailed requirements.
Thanks!
😎
June 18, 2014 at 4:54 am
If Einstein would have had SQL Server, it would have been so much easier:-D
😎
USE tempdb;
GO
;WITH SQL_VISDOM AS
(
SELECT
ROW_NUMBER() OVER...
June 18, 2014 at 1:23 am
gurbanov.1984 (6/18/2014)
my server2014
That was a very quick upgrade:-P
Any sample data?
😎
June 18, 2014 at 12:34 am
gurbanov.1984 (6/17/2014)
yes 2008
No problem there, only excludes the 2012/14 window functions. Could you provide some sample data + table structure?
😎
June 17, 2014 at 11:11 pm
sparikh (6/17/2014)
I am new to OLAP Reporting.
After creating cube i can also view it in BI Browser is there any other way to run it or how do...
June 17, 2014 at 11:08 pm
Quick questions: are you on 2008 platform? Can you provide some sample data?
😎
June 17, 2014 at 11:04 pm
Two solutions, first one for 2005 and later, the second 2012 and later. The difference is that the first one uses self-joining which makes it less efficient. For very large...
June 17, 2014 at 10:46 pm
pietlinden (6/17/2014)
the ROWS PRECEDING window function is new in...
June 17, 2014 at 10:37 pm
wolfkillj (6/17/2014)
Joe's challenge: Implement Conway's Game of Life in SQL.
The Schelling model...
June 17, 2014 at 2:53 pm
Viewing 15 posts - 7,966 through 7,980 (of 8,760 total)