Viewing 15 posts - 1 through 15 (of 17 total)
Hi,
I have made a sample of result set in attached xlxs as well as in below script but the values are dummy. Please get back to me if anything required....
January 28, 2016 at 8:57 am
Hi,
Thanks the quick Reply.
As My Table Structure, all are columns.
I Want ID to be pivoted and rest of the column value should also be pivoted accordingly.
Some_Derived_Column nameIDIDIDID
-----------------------------------------------------------------------------------------------------------------------------------------------------------------
Value OF SDIDValue OF...
January 28, 2016 at 8:08 am
John,
I dont know what is the exact problem.
Regards,
Vijay
March 25, 2015 at 3:51 am
Hi John,
Thanks for the reply. Problem is, i am unable to log in via Windows authentication as well.
Regards,
Vijay
March 25, 2015 at 3:18 am
Hi ,
Now we decided to have mapping metadata table with source columns and destination columns details. Now how to archive this?
Thanks in Advance
Regards,
Vijay
August 6, 2014 at 5:50 am
Hi Suresh,
BCP is the best and fastest way to migrate data. BCP sybase tables into .dat files and then use bulk insert.
Regards,
Vijay
June 11, 2014 at 2:28 am
Hi John,
Please find the error message below.
Msg 3169, Level 16, State 1, Line 1
The database was backed up on a server running version 8.00.0760. That version is incompatible with this...
June 10, 2014 at 12:20 am
Hi John,
I tried restoring it in 2008 R2. But i got the same compatibility error.
Regards,
Vijay
June 9, 2014 at 4:19 am
Try this if it helps you.
CREATE FUNCTION [dbo].[fnSplit]
(
@sInputList VARCHAR(8000) -- List of delimited items
, @sDelimiter VARCHAR(8000) = ',' -- delimiter that separates items
) RETURNS @List TABLE (item VARCHAR(8000))
BEGIN
DECLARE...
January 16, 2014 at 3:50 am
What you want to do after fetching 20000000 rows? Do you want to display all rows the screen?
Regards,
Vijay
November 22, 2012 at 5:17 am
Thanks a lot Lowell.:-)
Regards,
Vijay
October 29, 2012 at 8:09 am
Thanks laurie:-).
Even i tried the first Query and its working fine. But just wanted to know why its is not working in Usual way.
Regards,
Vijay
July 31, 2012 at 5:34 am
Hi,
Please find the code below.
CREATE TABLE MyTable
(
BatchFileID INT IDENTITY,
LineItemValue NVARCHAR(256)
)
INSERT MyTable
SELECT 'EFC'
UNION
SELECT '3456.5070'
UNION
SELECT '253434.5670'
UNION
SELECT '345.5070'
UNION
SELECT '1234.5670'
select * from MyTable
WHERE
--CAST(LineItemValue AS NUMERIC(28,5))=1234.5670 AND
LineItemValue NOT LIKE '%E%'
AND ISNUMERIC(LineItemValue)=1
select...
July 31, 2012 at 3:15 am
Hi,
I checked the query by parsing XML and inserting rows into table but i dint get any warnings or errors. I checked even the table structure and it looks fine....
January 5, 2012 at 4:19 am
Hi,
I reseed the table and the issue is fixed. But i want to know how this problem occurred.
Thanks,
Vijay
November 2, 2011 at 11:53 pm
Viewing 15 posts - 1 through 15 (of 17 total)