Viewing 15 posts - 8,596 through 8,610 (of 8,753 total)
Luis Cazares (4/8/2014)
Eirikur Eiriksson (4/8/2014)
You should look into linked server, check this out😎
It could help in other cases, but I'm not sure that it's the best option if you're trying...
April 8, 2014 at 12:18 pm
You should look into linked server, check this out
😎
April 8, 2014 at 11:53 am
hisakimatama (4/8/2014)
EDIT: Doh, forgot the closing parenthesis.
The parenthesis where the problem, a CTE does not require the columnar declaration.
😎
April 8, 2014 at 11:41 am
Abu Dina (4/8/2014)
SELECT @@VERSION gives me back:Adaptive Server Enterprise/15.5/EBF
I thought these function are not part of ASE?!
IQ and Anywhere yes, ASE (to my knowledge) no.
😎
April 8, 2014 at 10:30 am
Sybase has supported RANK with the OVER clause for some time, which version are you using?
Try this out, should work 😎
cREATE TABLE #SampleData (ID INT, Tran_Date DATETIME, Ref VARCHAR(10) NULL)
INSERT...
April 8, 2014 at 10:05 am
Using the row_number function
😎
cREATE TABLE #SampleData (ID INT, Tran_Date DATETIME, Ref VARCHAR(10) NULL)
INSERT INTO #SampleData(ID, Tran_Date, Ref)
SELECT 1, '2013-01-15', NULL UNION ALL
SELECT 1, '2012-04-10', 'Kames' UNION ALL
SELECT 1, '2013-10-05', 'Adjustment'...
April 8, 2014 at 9:16 am
This function will bring back the last number only portion of the string
😎
CREATE FUNCTION dbo.udf_GetNumEEric
(
@strAlphaNumeric VARCHAR(256)
)
RETURNS TABLE
AS
RETURN
WITH NBR1(N) AS (SELECT NM.N FROM (VALUES (1),(1),(1),(1),(1),(1),(1),(1),(1),(1)) AS...
April 8, 2014 at 6:55 am
Russel Loski (4/8/2014)
You can use the where or put the query into your XQuery (I don't know which is more efficient):
Not much of a difference for an untyped xml, typed...
April 8, 2014 at 4:55 am
Peter2012 (4/8/2014)
declare @TableSpace table
(
TableName sysname
, RowsK varchar(32)
, ReservedMB varchar(32)
, DataMB varchar(32)
...
April 8, 2014 at 2:33 am
Start by adding a data viewer in the Data Flow Task, between the Flat File Source and the destination.
Run the package in debug, if all the rows are shown in...
April 7, 2014 at 10:32 pm
rho_pooka (4/7/2014)
April 7, 2014 at 9:50 pm
First thought, make certain your user has the proper rights on both sql and ssas as a windows user.:cool:
April 7, 2014 at 1:58 pm
SQL Wayne (4/4/2014)
I have VS 2010 installed on a Windows 7 machine. We use this for TFS mainly. I am at a new...
April 7, 2014 at 12:25 pm
Could you detail your setup, looks like there is a missing login for the SSAS on the Sql Server.
😎
April 7, 2014 at 12:05 pm
call.copse (4/7/2014)
April 7, 2014 at 12:00 pm
Viewing 15 posts - 8,596 through 8,610 (of 8,753 total)