Viewing 12 posts - 16 through 28 (of 28 total)
Check this rough draft....Hope it will be helpful
--CREATE TABLE dbo.PersonInfo
--(
--PersonID INT IDENTITY(1,1),
--Name VARCHAR(20),
--Gender CHAR(1)
--)
--INSERT INTO dbo.PersonInfo (Name, Gender)
--SELECT 'Frank', 'M'
--UNION ALL
--SELECT 'Peter', 'M'
--UNION ALL
--SELECT 'Monalisa', 'F'
--UNION ALL
--SELECT...
February 14, 2011 at 3:01 pm
Just for curiosity..
if we don't know the maximum numbers of mac_address's associated for the Name.
Say here we have 4 mac_address associated with the Name "sn4051536", so went for RN=4...
January 17, 2011 at 1:17 pm
check your Mail... PM..
September 27, 2010 at 7:50 pm
shairalt (9/13/2010)
I have four SSIS packages (using SQL ‘08) that need to be executed simultaneously. I thought I could use...
September 13, 2010 at 10:55 am
Sql_20 (8/30/2010)
I need a help in creating a package which will copy new file dropped in the folder using SSIS. Folder will have textfiles for eg: abc_26-08-2010_27-08-2010,
abc_27-08-2010_28-08-2010. Please help...
September 2, 2010 at 4:42 pm
DECLARE @FileName VARCHAR(8000)
SET @FileName='SSC1, SSC2, SSC3'
CREATE TABLE #FileNames
(FileID INT IDENTITY(1,1),
FileNameList VARCHAR(30)
)
SET @FileName=LTRIM(RTRIM(@FileName))
--SELECT @FileName
BEGIN
...
September 2, 2010 at 3:45 pm
SELECT s.name + '.' + o.name
FROM sys.objects o
JOIN sys.schemas s
ON s.schema_id = o.schema_id
WHERE o.type = 'U'
why we need "AND LEFT(o.name,...
September 2, 2010 at 3:22 pm
PaVeRa22 (7/22/2010)
this is about.. moving files to different folder...
July 22, 2010 at 6:06 pm
I read something related to this ..
stating that...this can be done by in Script Task..
or there is any other way to refresh the Metadata of that package so that...
July 21, 2010 at 12:35 pm
PaVeRa22 (7/9/2010)
1. how you are activating/running package means, are u using sql job or commandline command or autosys or esp or maestro etc
2. are ur...
July 10, 2010 at 2:23 pm
Viewing 12 posts - 16 through 28 (of 28 total)