Viewing 15 posts - 1 through 15 (of 29 total)
Is there any other approach other than this which we achieve the result as per requirement.:-)
December 4, 2014 at 4:08 am
We should not use a staging table while loading from source we should pull unique records in single table and the duplicate in next table without using row_number,rank & dense...
December 4, 2014 at 3:00 am
Last record means the final record which was inserted into the table the data has been inserted through the application
October 31, 2014 at 11:14 am
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
Create PROCEDURE [dbo].[USP_UpdateGroupAccess](@VALUE NVARCHAR(MAX),@STRING NVARCHAR(10))
AS
CREATE TABLE #GROUPACCESS(ID INT, DATA VARCHAR(100))
DECLARE @TEMP1 TABLE
(ID INT IDENTITY(1,1),
VALUE VARCHAR(MAX) )
INSERT INTO @TEMP1 SELECT * FROM DBO.SPLIT(@VALUE,@STRING)
--- DBO.SPLIT...
November 12, 2013 at 3:39 am
Hi , Thanks for your reply
i had tried this already if i pass the data in the paramater as ('1,4,2,2|2,4,3,5','|')
I am getting the result set as
ItemIndexItem
0 ...
November 11, 2013 at 2:27 am
hi,
I am not getting all databases names in the server from sys.dm_db_index_usage_stats because sql server was restarted last week.
November 22, 2012 at 3:44 am
hi ,
we are using sql server 2008 r2
November 22, 2012 at 3:09 am
how can i know if the sql server restarted then also how we can retrieve when database was last accessed .
November 22, 2012 at 2:45 am
Hi ,
Thanks for reply but in the link which was mentioned the script task has been used TO READ sheet name so without scipt task how to read a...
October 18, 2012 at 5:32 am
HI, by using the max function also we can populate the required data ......
With tenant_history(hmy, dtdate, htent, sevent, dtoccurred, dtmovein, dtmoveout )
AS
(
SELECT '176340','2011-08-26 00:00:00.000','55496','Notice Given ...
June 11, 2012 at 11:45 pm
Hi from flat file fixed length data we can store into table using ssis but the length of source u given is 78 and in the data types which u...
June 11, 2012 at 6:03 am
hi,
i tried the same method but i am not getting the the record at all from that select becoz the catalog table has no record for the last executed...
May 10, 2012 at 5:52 am
Hi,
select MAX([TimeEnd]),Name
FROM [ReportServer].[dbo].[ExecutionLog] ,[ReportServer].[dbo].[Catalog]
where [ReportID]=[ItemID]
group by Name
will get enough information for me
but the concern is the latest report which i executed has...
May 10, 2012 at 4:33 am
Hi,
what is the use of the history table, in my db the history table is blank, it is not populated with data.
How to get the report_name and last_execution of...
May 10, 2012 at 4:16 am
The error which u mentioned above , in that parameter name is showing as unrecognized so may be the parameter which has chosen is not in that scope of package...
May 9, 2012 at 12:35 am
Viewing 15 posts - 1 through 15 (of 29 total)