Viewing 15 posts - 2,596 through 2,610 (of 11,678 total)
You need to use another SQL statement (DML, so insert, update, insert or merge) that actually uses the CTE.
WITH CTE_Test (ID)
AS
(
SELECT CAST(id AS VARCHAR(60)) FROM cat_transaction
EXCEPT
SELECT ext_reference FROM Patricia.dbo.BUDGET_LINE
)
SELECT...
June 17, 2014 at 6:45 am
Ryan1 (6/17/2014)
June 17, 2014 at 6:20 am
NVARCHAR is when you store your data as unicode.
I expect this might give less issues, but you still need to do the conversion at sybase or in SSIS.
June 17, 2014 at 6:00 am
chandan_jha18 (6/17/2014)
June 17, 2014 at 5:23 am
sugnu iu (6/17/2014)
I got a question which i could not find answer given my knowledge of SQL.
one of my users performed a DROP TABLE on a table with 96...
June 17, 2014 at 5:20 am
Steven Jones-245254 (6/17/2014)
Ok thanks for the quick reply.What are the security concerns around either ?
It is like any other email system.
People who have access can send emails. (unless you...
June 17, 2014 at 5:15 am
Suresh Arumugam (6/17/2014)
Thank you for taking time to...
June 17, 2014 at 5:14 am
rhythmk (6/17/2014)
Koen Verbeeck (6/17/2014)
You can use INFORMATION_SCHEMA.columns for the same purpose. Filter on the table and check if the column exists.It is applicable to both.
And that is why, ladies...
June 17, 2014 at 4:58 am
Suresh Arumugam (6/17/2014)
SSIS OLE DB Source by default has taken the data type as DT_STR which I did not change. I have tried with AlwaysUseDefaultCodePage property also TRUE. Still...
June 17, 2014 at 4:56 am
river1 (6/17/2014)
But, I need to make only one script that can run over 2000 or 2005 databases.That script is valid only for sql server 2005, correct?
The information schema views are...
June 17, 2014 at 4:49 am
Duplicate post.
Original question with replies can be found here:
http://www.sqlservercentral.com/Forums/Topic1582202-146-1.aspx
June 17, 2014 at 4:29 am
You can use INFORMATION_SCHEMA.columns for the same purpose. Filter on the table and check if the column exists.
June 17, 2014 at 4:28 am
The Send Mail Task in SSIS uses an SMTP connection manager, meaning it connects to the mail server specified in that connection manager.
Database mail is managed inside SQL Server, but...
June 17, 2014 at 4:20 am
What is the data type used in the SSIS data flow?
June 17, 2014 at 4:17 am
Koen Verbeeck (6/11/2014)
martiankeeper (6/11/2014)
SQL Server 2014 - What's New in Analysis Services and Business Intelligence
http://msdn.microsoft.com/en-us/library/bb522628.aspx
Multidimensional models now also support...
June 17, 2014 at 4:14 am
Viewing 15 posts - 2,596 through 2,610 (of 11,678 total)