Viewing 15 posts - 3,286 through 3,300 (of 13,469 total)
Ed Wagner (6/14/2013)
June 14, 2013 at 6:49 am
gurjer48 (6/14/2013)
how to add and retrieve a image to and from databse table using open rowset(exaplain)?is there any other ways of doing image insertion and retrieval?
Thanks and Regards
this post has...
June 14, 2013 at 5:43 am
here's my best guess, based on your original query, using row_number() like kingston suggested:
SELECT
ROW_NUMBER() OVER (PARTITION BY mem.MemberID ORDER BY t.TransactionDate) AS RW,
mem.MemberID,
mem.FirstName + ' '...
June 14, 2013 at 5:27 am
usually this is done in a programming language, as there's a lot more tools and control there.
Doing it in TSQL only, the file has to exist, and you have to...
June 13, 2013 at 12:19 pm
Ed you are correct, i'm still not getting what i'm after;
if i add these five more rows to my sample data above, i would expect five values with [1] and...
June 13, 2013 at 6:26 am
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
Viewing 15 posts - 3,286 through 3,300 (of 13,469 total)