Viewing 15 posts - 8,161 through 8,175 (of 26,490 total)
Ray M (4/3/2013)
Lynn Pettis (4/3/2013)
April 3, 2013 at 3:14 pm
erikd (4/3/2013)
Lynn Pettis (4/3/2013)
erikd (4/3/2013)
Lynn Pettis (4/3/2013)
From your post I can't tell if you are using '\ n' (no space between the \ and n) as your row terminator.
There is...
April 3, 2013 at 3:10 pm
Does this help you figure out how to query the data into a format you can use? Personally, I'd load the data as is from Excel into a staging...
April 3, 2013 at 3:08 pm
erikd (4/3/2013)
Lynn Pettis (4/3/2013)
From your post I can't tell if you are using '\ n' (no space between the \ and n) as your row terminator.
There is no space.
So, does...
April 3, 2013 at 2:57 pm
DBA12345 (4/3/2013)
Excel Look like below:
Server ...
April 3, 2013 at 2:51 pm
erikd (4/3/2013)
So, even though my company has nothing to do with telemarketing, we've been asked to bump phone numbers for one project up against the national DNC list. It's a...
April 3, 2013 at 2:48 pm
5280_Lifestyle (4/3/2013)
Lynn,I tried using that query and I canceled the query after waiting for about 8 minutes. It didn't like that version.
It was worth a shot, but what I talked...
April 3, 2013 at 1:52 pm
5280_Lifestyle (4/3/2013)
April 3, 2013 at 1:25 pm
There is no guarantee of order if you do not specify an ORDER BY in your select query.
April 3, 2013 at 11:54 am
Biggest suggestion I have, don't use date as a column name. It is also a datatype starting with SQL Server 2008.
April 3, 2013 at 10:35 am
This:
create table #temp
(CalendarDate datetime,
IsWeekDay int,
SchoolDay int)
insert into #temp values('2011-08-06 00:00:00.000',0,0)
insert into #temp values('2011-08-07 00:00:00.000',0,0)
insert into #temp values('2011-08-08 00:00:00.000',0,0)
insert into #temp values('2011-08-09 00:00:00.000',0,0)
insert into #temp values('2011-08-10 00:00:00.000',0,0)
insert...
April 3, 2013 at 10:34 am
erikd (4/3/2013)
Sean Lange (4/3/2013)
declare @thing...
April 3, 2013 at 10:27 am
kapil_kk (4/3/2013)
But its giving me error that @new_identity parameter is not...
April 3, 2013 at 10:21 am
GilaMonster (4/3/2013)
jasona.work (4/3/2013)
1. After-hours, switch all DBs from Full Recovery to Simple,...
April 3, 2013 at 10:15 am
I have seen people actually configure job steps to quit the job reporting failure for the On success action.
You may want to check this.
April 3, 2013 at 10:02 am
Viewing 15 posts - 8,161 through 8,175 (of 26,490 total)