Viewing 15 posts - 3,271 through 3,285 (of 13,462 total)
you didn't mention if you followed HanShi's advice about pinging all the ip addresses you think you want to use for your cluster; it really does sound like somethign has...
June 17, 2013 at 9:33 am
ksatpute123 (6/17/2013)
I want to find out all the object referring the columns in a table....
June 17, 2013 at 7:38 am
by introducing a row_number function that partitions by the two columns, you cna find unique rows; fromt here, it's just the same query you had before, but hitting a subquery...
June 17, 2013 at 5:39 am
mca.deepak3335 (6/17/2013)
can any one give me script for generating .ndf files in sql server 2008
did you mean scripting existing files?
fastest way i think would be to right click on...
June 17, 2013 at 5:29 am
Almost everything in scripting is configurable as to whether a result is scripted or skipped;
spend some time reviewing the many scripting options that are in Tools>>Options;
As I remember, scripting of...
June 17, 2013 at 5:23 am
Great Sam! which SQL Saturday is this for? i know there is a local(for me) in the Fort Lauderdale area coming up in three weeks or so; I was wondering...
June 14, 2013 at 1:04 pm
first thing i see is the non-Sargable WHERe statemnet in the first CTE:
cteMain is not Sargable:
WHERE (DATEDIFF(d, g.HireDate, GETDATE()) > 181
i think this is the equivilent, and would use...
June 14, 2013 at 11:53 am
hydbadrose (6/14/2013)
June 14, 2013 at 10:16 am
I see the issue now.
bcp cannot take any input with carriage return line feeds.
your statement is easy to read, because it has the CrLf in it, but i'ts not valid...
June 14, 2013 at 7:32 am
probably permissions; when you go outside of a database, like to the command line, a user you do not expect(the startup account of the service) is used
does this code return...
June 14, 2013 at 6:57 am
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
Viewing 15 posts - 3,271 through 3,285 (of 13,462 total)