Viewing 15 posts - 3,256 through 3,270 (of 10,144 total)
Ed Wagner (6/16/2014)
GilaMonster (6/14/2014)
Koen Verbeeck (6/14/2014)
Ah, the world cup...
Yup, that's pretty much how I feel.
I have little interest in sport. Most of the time that's fine. This week, I can't...
June 16, 2014 at 6:36 am
Your query has an inner join between tables STG.personattribute (stg) and GDW.personattribute (tar)
which includes this predicate: Tar.AttributeID = stg.AttributeID.
The WHERE clause includes this predicate: ISNULL(Tar.AttributeID, 0) != ISNULL(stg.AttributeID, 0),
which...
June 16, 2014 at 3:07 am
There are a few hints in here which might help you on your way:
ALTER PROCEDURE [dbo].[TR_SearchTests_Counter_v2]
@REGISTER_IDint= null,
@PART_NUMBERnvarchar(50)= null,
@PHASE_NUMBERnvarchar(10)= null,
@TEST_NUMBERnvarchar(20) = null,
@PROCESS_ORDERnvarchar(50) = null,
@IS_VOIDbit= null,
@REGISTERED_FROMsmalldatetime=...
June 12, 2014 at 9:51 am
June 12, 2014 at 7:00 am
J Livingston SQL (6/11/2014)
In a similar vein .....what's the current UK market like?
Strongly seasonal. Two months ago I was getting two or three phone calls each day, now it's more...
June 12, 2014 at 1:42 am
Sean Lange (6/11/2014)
SQLSteve (6/11/2014)
June 11, 2014 at 9:48 am
SELECT fullname, attrib3, num_occurrences
FROM (
SELECT
fullname,
attrib3,
num_occurrences = COUNT(*) OVER(PARTITION BY fullname)
FROM userdb
WHERE companyname LIKE 'carpet%'
) d
WHERE num_occurrences > 1
June 11, 2014 at 9:12 am
pk2dpvp (6/11/2014)
I fixed the problem
though I do not know why it got fixed...
what I did:
I changed ever A to SP and every SP to A (Turned around the script so...
June 11, 2014 at 8:09 am
sql-lover (6/11/2014)
ChrisM@Work (6/11/2014)
CREATE TABLE #temp (colint INT, colvarchar VARCHAR(10), colcomputed AS CAST(colvarchar AS INT))INSERT INTO #temp (colint, colvarchar) SELECT 1, '10'
SELECT * FROM #temp
CREATE INDEX ix_colcomputed ON #temp (colcomputed)
SELECT colcomputed...
June 11, 2014 at 7:35 am
CREATE TABLE #temp (colint INT, colvarchar VARCHAR(10), colcomputed AS CAST(colvarchar AS INT))
INSERT INTO #temp (colint, colvarchar) SELECT 1, '10'
SELECT * FROM #temp
CREATE INDEX ix_colcomputed ON #temp (colcomputed)
SELECT colcomputed FROM #temp...
June 11, 2014 at 7:05 am
The two large data blocks which you posted earlier are slowing down access to this thread - can I ask you to shorten each block to say ten rows please?...
June 11, 2014 at 6:41 am
pk2dpvp (6/11/2014)
...(1960 row(s) affected)
(1960 row(s) affected)
(1960 row(s) affected)
it returned utter chaos :p
Not quite. Your results are exactly consistent with running this:
-- Query 1
SELECT
a.omschrijving, sp.omschrijving,
--a.verkoopprijs, sp.verkoopprijs,
a.gewijzigd, getDate()
FROM artikelen a
INNER JOIN...
June 11, 2014 at 5:44 am
pk2dpvp (6/11/2014)
I've tried to run my script without any float's (Just the description, which is...
June 11, 2014 at 5:01 am
Thanks.
Here's an article which explains what's happening and offers a workaround.
June 11, 2014 at 4:29 am
Select one of the tables in SSMS.
Right-click on column [verkoopprijs] to raise the property sheet. Record the values for [Length] and [Numeric Precision].
Do the same with the other table, post...
June 11, 2014 at 3:51 am
Viewing 15 posts - 3,256 through 3,270 (of 10,144 total)