Viewing 15 posts - 3,286 through 3,300 (of 13,462 total)
rajborntodare is correct;
the information is not saved anywhere on SQL server, unless you explicitly added one of the many audit options available to SQL server.
so going forward, I would recommend...
June 13, 2013 at 6:15 am
wow amazing what a little coffee can do for me!
my issue was the wrong tool for the job.
i needed to use DENSE_RANK() and not ROW_NUMBER
this is what i should have...
June 13, 2013 at 6:06 am
arooj300 (6/13/2013)
I have a 4 GB CSV file , which i am unable to import in SQL Server 2008 R2, even I not able to open file also. I tried...
June 13, 2013 at 5:53 am
prtk.raval (6/7/2013)
Hi champion, What is SSMS..where I have to copy the result of column1.?
SSMS = SQL Server Management Studio, sorry about the acronym!
June 7, 2013 at 3:04 pm
here's two ways how i might do it.
first create yourself a temp table to capture the results from the code below:
the code below is doing TWO examples,
one to build...
June 7, 2013 at 2:32 pm
prtk.raval (6/7/2013)
SERVER OBJECT => LINKED SERVER => [ORACLE LS] => [CATALOG]...
June 7, 2013 at 10:00 am
vs.satheesh (6/7/2013)
with CTE1
(
select * from xx
),
CTE2
(
select * from xx a inner join CTE1 CT on xx.id=CT.id
) ,
CTE3
(
select *...
June 7, 2013 at 9:52 am
it's incredsibly similar; you just have to use the four part naming convention:
SELECT
TABLE_NAME,
COLUMN_NAME
FROM
MyOracleLinkedServer...ALL_TAB_COLUMNS
WHERE
COLUMN_NAME LIKE '%PATTERN%';
if you are not a sysadmin on the linked server, you might have to use USER_TAB_COLUMNS...
June 7, 2013 at 8:20 am
not sure which of the two tables are the problem, but i'd start by looking at any values that cannot convert to a numeric datatype:
SELECT * from [dbo].[Final] ...
June 7, 2013 at 6:49 am
whether is was near simultaneous or five minutes apart, what prevents two people form overwriting the task at all?
does the business /app portion present a list of available task slots...
June 7, 2013 at 6:33 am
it's going to look a lot like this:
the only thing i could not determine was the primary key that woudl related the INSERTED to the DELETED ; your example did...
June 7, 2013 at 6:19 am
Sean Lange (6/6/2013)
June 6, 2013 at 3:31 pm
here's a start to finish example, where i create a user, grant just the permissions Perry identified in his posts, specifically impersonate that user for testing, and then read from...
June 6, 2013 at 3:18 pm
Sean mine was just a lazy adaptation of something that already existed; it was easier than from- scratch script to find them; this adapted snippet from the middle of your...
June 6, 2013 at 3:06 pm
bslchennai (6/6/2013)
June 6, 2013 at 2:55 pm
Viewing 15 posts - 3,286 through 3,300 (of 13,462 total)