Viewing 15 posts - 16 through 30 (of 47 total)
Sean Lange (5/29/2014)
SQL is delicious (5/29/2014)
Sean Lange (5/29/2014)
SQL is delicious (5/29/2014)
KoldCoffee (5/29/2014)
May 29, 2014 at 2:42 pm
Sean Lange (5/29/2014)
SQL is delicious (5/29/2014)
KoldCoffee (5/29/2014)
May 29, 2014 at 2:06 pm
KoldCoffee (5/29/2014)
May 29, 2014 at 1:53 pm
Try this:
select userid from order
WHERE status = UPPER(status) COLLATE SQL_Latin1_General_CP1_CS_AS
May 29, 2014 at 1:50 pm
Koen Verbeeck (5/20/2014)
SQL is delicious (5/1/2014)
brad.mccollum (5/1/2014)
To give you a little more insight as to the general nature of the SSIS package, it will basically be looping through a folder...
May 21, 2014 at 7:19 am
hunchback (5/15/2014)
SET NOCOUNT ON;
USE tempdb;
GO
WITH C1 AS (
SELECT
T.first_name,
T.last_name,
R.degree,
R.pos,
ROW_NUMBER()OVER(PARTITION BY T.first_name, T.last_name ORDER BY R.pos) AS rn
FROM
(
VALUES
('John', 'Smith', '', 'BA', '',...
May 15, 2014 at 10:46 am
Sean Lange (5/15/2014)
BWAHAHAHAHA!!!! That sets the value to 1 and then looks up the row in dbo.numbers where n = 1 and sets the value of @n to the same...
May 15, 2014 at 8:20 am
Posting before morning coffee = advice fail.
OK. This won't work unless you do THIS too:
SET @n = 1
SET @n = (SELECT n FROM dbo.numbers WHERE n = @n);
And this:
...
WHEN...
May 15, 2014 at 7:52 am
n needs to be a variable; declare n (select n from dbo.numbers) as a variable, set it as SET @N = (SELECT N FROM dbo.numbers) then reference @N in the...
May 15, 2014 at 7:43 am
I prefer multiple monitors but where I am now I'm stuck hot-desking with a 15" laptop screen. :crying:
I never thought I'd say this, but I miss cubes. I...
May 9, 2014 at 8:59 am
Sean Lange (5/9/2014)
jdasilva (5/9/2014)
J Livingston SQL (5/9/2014)
is/can your form be based on a single table/sql query?
Yes, and it currently is, but that query refines data based on a an office...
May 9, 2014 at 8:37 am
jdasilva (5/9/2014)
May 9, 2014 at 8:08 am
I feel your pain; I did a similar project 9 years ago where I moved an Access 97 database to a SQL 2005 back end, maintaining the Access front end....
May 9, 2014 at 7:52 am
logitestus (5/7/2014)
The logic is where document type (doc_type column) is 'S'...
May 8, 2014 at 7:30 am
I'm always nervous, every time. One of my problems is that it's hard for me to articulate exactly how to do something in SQL, or explain it to other...
May 5, 2014 at 7:56 am
Viewing 15 posts - 16 through 30 (of 47 total)