Viewing 15 posts - 4,336 through 4,350 (of 26,490 total)
xsevensinzx (11/6/2015)
Brandie Tarvin (11/6/2015)
xsevensinzx (11/6/2015)
Jeff Moden (11/5/2015)
Precisely. I couldn't have said it better myself. It's a bit like interviewing a mechanic. If they can't describe the difference...
November 6, 2015 at 8:13 am
Ed Wagner (11/5/2015)
Sean Lange (11/5/2015)
xsevensinzx (11/4/2015)
Jeff Moden (11/4/2015)
Brandie Tarvin (11/4/2015)
Jeff Moden (11/3/2015)
November 5, 2015 at 11:43 am
Haven't heard back, so I thought I'd provide my updated solution:
create table #Channels (
ChannelDate datetime,
SourceId int,
ChannelId int,
...
November 5, 2015 at 11:40 am
Brandie Tarvin (11/4/2015)
Jeff Moden (11/3/2015)
November 4, 2015 at 10:17 am
Brandie Tarvin (11/4/2015)
Lynn Pettis (11/4/2015)
Plus, I am trying to convince my supervisor to send me back to Afghanistan for 6 months in June next year.Is the tea really that good?
Actually,...
November 4, 2015 at 10:13 am
DBA Cabuloso (11/4/2015)
In the regular DBA job, we query our databases everyday.
If we use Natural Join, it is more concise, we write less.
We don't have...
November 4, 2015 at 9:04 am
Jeff Moden (11/3/2015)
November 4, 2015 at 9:01 am
FYI, I have a solution already. Just curious what change(s) you think need to be made to the query.
November 4, 2015 at 8:57 am
EJGAJG (11/4/2015)
Was it so simple.
Maybe i told it wrong, but i have at the moment almost 47000 rows of data and i want to filter only the first data...
November 4, 2015 at 8:49 am
This should get you started. Ask questions if you aren't sure what the code is doing. Also, remember that Books Online is your friend.
create table #Channels (
...
November 3, 2015 at 6:08 pm
Well, not much we can do about your query since we can't see it or the DDL for the tables it is running against.
Please take the time to read the...
November 3, 2015 at 5:54 pm
Now for a solution:
create table #Orders (
order_no varchar(2000),
tracking_no varchar(64)
);
insert into #Orders(order_no, tracking_no)
values ('1256484','1Z0310590352855360'),
('1254541','1Z0310590353390173'),
...
November 3, 2015 at 5:46 pm
celticpiping (11/3/2015)
I did have a THEN: totally left it off for no reason..
The end goal is to find those "order_no's that are over 7 characters in length,
and if...
November 3, 2015 at 5:35 pm
Probably could if we knew what it is you are trying to accomplish. It's possible that it may not even require a cursor.
November 3, 2015 at 2:42 pm
DBA Cabuloso (11/3/2015)
It is in the SQL Standard.
I know it can be tricky (when fields have the same name such as DateUpdated),...
November 3, 2015 at 12:03 pm
Viewing 15 posts - 4,336 through 4,350 (of 26,490 total)