Viewing 15 posts - 5,356 through 5,370 (of 7,168 total)
What did you mean by this?
Unfortunately, this user variable comes from a 3rd party and in order to get it to work, it has to be a DOUBLE.
Can you post...
July 27, 2011 at 9:32 am
I was hoping to see the plans when run against your live data 🙂
I went ahead and mocked up 1MM rows of test data and your query 1 performs worse...
July 27, 2011 at 9:26 am
Sqlsavy (7/27/2011)
Well I ran the upgrade adviser on SQL 2000 server and books online says
In earlier versions of SQL Server, system object and system type names are matched...
July 27, 2011 at 8:48 am
Is it a CLR user-defined type (UDT), or a T-SQL UDT?
Try capturing the value as an SSIS double with this as your Execute SQL Task source:
SELECT CAST(MainID AS FLOAT)...
July 27, 2011 at 8:41 am
Chances are it is not a permission issue related to reaching the executable or related to something the SSIS package or executable are trying to do otherwise the job would...
July 27, 2011 at 8:33 am
Disclaimer: I am relying on my knowledge of how SQL Server Browser is meant to work. I have never actually worked in this exact scenario.
I think you're running into an...
July 26, 2011 at 4:35 pm
Thanks for the reply Leo.
This is a DR scenario so the three secondary databases I have are all in Standby/Read-Only mode. The Read-Only part might be the deal-breaker and I'm...
July 26, 2011 at 4:19 pm
You are bordering on "get a consultant"...but I'll throw in my two cents.
pete 85875 (7/26/2011)
July 26, 2011 at 3:32 pm
dan.forest (7/26/2011)
July 26, 2011 at 3:14 pm
GilaMonster (7/26/2011)
Ninja's_RGR'us (7/26/2011)
July 26, 2011 at 2:55 pm
GilaMonster (7/26/2011)
opc.three (7/26/2011)
SELECT DISTINCT
collation
FROM syscolumns
WHERE id = OBJECT_ID('SALES')
...
July 26, 2011 at 2:52 pm
What does this return on SQL 2000?
SELECT DISTINCT
collation
FROM syscolumns
WHERE id = OBJECT_ID('SALES')
...
July 26, 2011 at 2:38 pm
This question came up before and IIRC .NET FW is only required for the installation package of SQL Server, not for the actual product itself.
That said, if you have any...
July 26, 2011 at 2:04 pm
How large of a table is TB_ARTICLE? By "compare the 2 tables in different servers" if you mean to sync data between them, i.e. from the looks of your query...
July 26, 2011 at 1:47 pm
SQLkiwi (7/25/2011)
Converting to bit promotes any nonzero value to 1.
This is true for implicit as well as explicit conversions:
DECLARE @bit BIT ;
-- no error on implicit conversion from number...
July 26, 2011 at 12:53 pm
Viewing 15 posts - 5,356 through 5,370 (of 7,168 total)