Viewing 15 posts - 2,956 through 2,970 (of 15,381 total)
Lynn Pettis (4/24/2015)
jonathan.crawford (4/24/2015)
April 24, 2015 at 8:06 am
cerian (4/24/2015)
Mark Cowne (4/24/2015)
Have a look hereGreat, thanks, as much as this answer was over-complicated from what we needed, the function he mentions does exactly what we need
I would disagree...
April 24, 2015 at 7:42 am
SQLRNNR (4/23/2015)
Brandie Tarvin (4/23/2015)
Kids love presentations more when they get to have input. All classes should be taught this way.
If only we could get the adults to get off their...
April 23, 2015 at 1:13 pm
Did the presentation this morning. I started by making sure this is the "new hire orientation" and that everybody was ready to get some information on their first day of...
April 23, 2015 at 9:33 am
Lynn Pettis (4/23/2015)
Finally made the dive into using TVPs. Pretty neat stuff actually.
They are pretty slick. I was working on an article to explain how to use them both...
April 23, 2015 at 8:50 am
Excellent question. I got it right by deduction more than understanding. I figured the scalar would run for each row but I would have thought the itvf would too...but then...
April 23, 2015 at 7:16 am
ldummer (4/22/2015)
Lowell that is exactly what I was looking for. Thanks
Not that I care which style you prefer but the code I posted returns the exact same results. 😀
April 22, 2015 at 3:03 pm
tlp6327 (4/22/2015)
April 22, 2015 at 2:48 pm
ldummer (4/22/2015)
April 22, 2015 at 2:32 pm
ajspencer (4/22/2015)
I am in need of some coding help..... I'm trying to transpose rows to columns at the same time do a count of the rows without getting duplicate crs_id.
select...
April 22, 2015 at 2:26 pm
Sam Garth (4/22/2015)
I have been looking at a SQL agent job that runs.
The issue is that it joins a lot of tables as well as a lot of views. If...
April 22, 2015 at 10:48 am
It is hard to know exactly what you need here. In order to help we will need a few things:
1. Sample DDL in the form of CREATE TABLE statements
2. Sample...
April 22, 2015 at 9:16 am
dwain.c (4/21/2015)
WITH Alphas AS
(
SELECT a
FROM (VALUES('A'),('B'),('C'),('D')) a (a) -- use 22 letters
),
Numbers AS
(
SELECT...
April 22, 2015 at 7:10 am
serg-52 (4/21/2015)
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[tsample]') AND type in (N'U'))
DROP TABLE [dbo].[tsample]
GO
create table tsample (
id int identity(1,1)
,val varchar(8000));
insert tsample...
April 21, 2015 at 9:51 am
ditha (4/21/2015)
Can you please please please recode and post and I shall look into and modify or test ?Thanks for the great help
I am a bit scared that you...
April 21, 2015 at 9:12 am
Viewing 15 posts - 2,956 through 2,970 (of 15,381 total)