Viewing 15 posts - 8,146 through 8,160 (of 26,490 total)
ScottPletcher (4/4/2013)
Lynn Pettis (4/4/2013)
ScottPletcher (4/1/2013)
sharky (3/31/2013)
Lynn Pettis (3/29/2013)
SQLRNNR (3/29/2013)
Lynn Pettis (3/29/2013)
ScottPletcher (3/29/2013)
April 4, 2013 at 9:14 am
Or this:
WITH Priorities as (
SELECT
Priority,
PriorityOrder
FROM
(VALUES ('Top Priority',1),
('High',2),
...
April 4, 2013 at 9:06 am
Really? If all you need from the StudentData in a separate table is a sumary of fees by department this will provide what you want with no temporary table...
April 4, 2013 at 7:46 am
Try this:
insert into PendingIO(
[database],
Physical_name,
io_pending,
io_pending_ms_ticks,
io_type,
num_of_reads,
...
April 4, 2013 at 7:09 am
T.Ashish (4/4/2013)
I have attached two queries with table definition and sample data.
Query 2 is working better then query 1.
Now the actual question is:
Should I...
April 4, 2013 at 7:02 am
SQL_Surfer (4/4/2013)
In other words, user needs to see list of conflicted dates so that he knows which new dates to put in.
Words, all I see are words. We need...
April 4, 2013 at 6:51 am
ScottPletcher (4/1/2013)
sharky (3/31/2013)
Lynn Pettis (3/29/2013)
SQLRNNR (3/29/2013)
Lynn Pettis (3/29/2013)
ScottPletcher (3/29/2013)
The advantage to tempdb is that there is less overhead writing data there since SQL "knows" it never has to recover tempdb.
Really?...
April 4, 2013 at 5:20 am
SQL_Surfer (4/4/2013)
Sorry, output should be something like select from mytasklist where conflict dates exist. If no conflict dates exist, should be nothing.
This doesn't help me. Using the limited sample...
April 4, 2013 at 5:08 am
Chris Quinn-821458 (4/4/2013)
As stated previously, the data is a set of key/value pairs, with a datatype (D = Date, N= Number,...
April 4, 2013 at 4:44 am
Vertigo44 (4/3/2013)
Wouldn't that give me Visits with or that have doc name B? I'm looking for the ones that do not have a specific document...that are missing a document. You...
April 3, 2013 at 9:26 pm
AAKR (4/3/2013)
hi all,For interview prospective I need answer for this question. Please help me all
In advance thank you 🙂
Are you the interviewer or interviewee?
April 3, 2013 at 5:45 pm
Something like this:
select *
from
TableH h
where
exists(select 1 from TableC c where c.[visit#] = h.[visit#] and c.[document name] = 'Doc B');
April 3, 2013 at 3:58 pm
erikd (4/3/2013)
Lynn Pettis (4/3/2013)
And what happens if you make the phone number field varchar(8)?
Heh. Curiously, I can use Python to split the file up (opening the whole file with any...
April 3, 2013 at 3:51 pm
And what happens if you make the phone number field varchar(8)?
April 3, 2013 at 3:34 pm
Can you upload a 10 line snippet of the file as a .txt file, please?
April 3, 2013 at 3:30 pm
Viewing 15 posts - 8,146 through 8,160 (of 26,490 total)