Forum Replies Created

Viewing 15 posts - 1 through 15 (of 17 total)

  • Reply To: SSIS - Data Load Using Excel Source

    Same .xlsx format only in both operation

  • Reply To: SSIS - Data Load Using Excel Source

    Dinors,

    When i select the excel file  the excel version is automatically changed to "Microsoft Excel 2007-2010"

  • RE: SSIS -Data Population Issue

    Using Username and Password like SQL authentication..

  • RE: SSIS -Data Population Issue

    Joe Torre - Thursday, June 21, 2018 11:30 AM

    How are you authenticating to the Oracle server?

  • RE: Index Performance

    Thanks for your reply... Additionally i want to know some information. Both Index will take some memory right? It will cause any performance issue?

  • RE: Index Performance

    Thanks Roshan...

    Now i have found how it is created after discussing with development team... They have created table and index like below code....

    CREATE TABLE...

  • RE: SQL Server Clustering

    Hi John,

    I'm connecting SQL Server instance using IP(10.AA.AA.AA). But we don't have access for Node2 IP(10.YY.YY.YY).

    When we ping using Node2 IP its throws "Request timed out" error.

  • RE: SQL Query - View

    Thanks lot Luis Cazares... Its working..

  • RE: Finding Jobs Based on Mail ID Used in DB Mail

    Thank you so much!!!

  • RE: SQL DB Mail

    Thank u...

  • RE: SQL DB Mail

    Hi Ed,

    Thanks for your reply. In output sheet i'm not getting the first 4 digit zeros from Item_code. I need output with zeros.

  • RE: Displaying Column Name

    i want output like below:

    select name from sys.columns where object_ID=3 /* Query something like this */

    Output :

    ABCD

  • RE: SQL Query

    Hi Chetan,

    Thank u. But Total_price and DatePurchased date showing wrong.

  • RE: SQL Query

    Hi This part shows error.

    /*------------------------

    SELECT *, SUM( Price ) OVER( Partition BY Customer_Name ORDER BY DatePurchased) AS Total_Till_Date

    FROM #sample where Customer_Name='A'

    ------------------------*/

    Msg 102, Level 15, State 1, Line 1

    Incorrect syntax near 'order'.

  • RE: SQL Query

    Hi,

    Pls find the below details

    Create table #sample(Customer_Name varchar(50),Goods varchar(50),

    Price float,DatePurchased datetime)

    insert into #sample

    select 'A','Bat',250,'1/31/2014'

    select 'A','Ball',250,'1/31/2014'

    select 'B','Carrom',850,'2/2/2014'

    select 'C','TennisBall',250,'2/1/2014'

    select 'A','Bat',250,'2/2/2014'

    select 'D','Bat',250,'1/31/2014'

    select 'B','Bat',250,'1/31/2014'

    select 'A','Bat',250,'2/4/2014'

    select 'C','Chess',250,'2/4/2014'

    select 'A','Bat',250,'2/4/2014'

    select 'C','Chess',250,'2/4/2014'

    Output Format:

    Customer_Name Total_Price DatePurchased

    A 1000 2/4/2014

    B 1100 1/31/2014

Viewing 15 posts - 1 through 15 (of 17 total)