Viewing 15 posts - 1 through 15 (of 17 total)
Same .xlsx format only in both operation
December 18, 2019 at 1:35 pm
Dinors,
When i select the excel file the excel version is automatically changed to "Microsoft Excel 2007-2010"
December 18, 2019 at 1:17 pm
Using Username and Password like SQL authentication..
June 21, 2018 at 11:35 am
Joe Torre - Thursday, June 21, 2018 11:30 AMHow are you authenticating to the Oracle server?
June 21, 2018 at 11:34 am
Thanks for your reply... Additionally i want to know some information. Both Index will take some memory right? It will cause any performance issue?
February 20, 2017 at 2:07 am
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...
February 20, 2017 at 12:15 am
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.
December 30, 2016 at 2:41 am
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.
April 29, 2014 at 4:17 am
i want output like below:
select name from sys.columns where object_ID=3 /* Query something like this */
Output :
ABCD
March 24, 2014 at 7:52 am
Hi Chetan,
Thank u. But Total_price and DatePurchased date showing wrong.
February 10, 2014 at 5:49 am
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'.
February 10, 2014 at 5:38 am
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_NameTotal_PriceDatePurchased
A10002/4/2014
B11001/31/2014
February 10, 2014 at 5:02 am
Viewing 15 posts - 1 through 15 (of 17 total)