Viewing 15 posts - 76 through 90 (of 172 total)
Try putting the objects into a Rectangle. The Rectangle object will keep items together where you put them. Usually. 😛
March 2, 2012 at 3:11 pm
It would probably be best to let the query filter the data by passing the parameters to the query, as such:
select * from tblA where YourDateField >= @DateMin and YourDateField...
March 2, 2012 at 3:07 pm
Whenever a date is dropped into Excel from SQL it is in the full date format. You'll want to cast or convert the datetime column in your query. ...
March 1, 2012 at 5:25 pm
Excellent point and good teaching.
Love the name, Mr. Pants.
March 1, 2012 at 10:57 am
This is a great place to be. I spend whatever free time I have during the day reading through the forums. There are some mighty talented folks here...
February 28, 2012 at 6:32 pm
Also - stored procedures typically provide better maintainability and reusability
February 27, 2012 at 1:57 pm
I'm kind of guessing as I've not worked much with SSIS yet... but in the olden days of DTS, the package ownership was assigned to whoever created it, and you...
February 23, 2012 at 5:29 pm
Are you trying to export to excel by chance? you will get this error when you have > 64k rows. Try to export as csv.
February 23, 2012 at 5:13 pm
Thanks! Very helpful. I made myself a Word version. It's attached if anyone wants it.
February 23, 2012 at 3:46 pm
Revenant (2/16/2012)
crookj (2/16/2012)
WOTD - GamificationXboxification (Kinectification?)
Transmogrification
February 16, 2012 at 12:44 pm
J Livingston SQL (2/15/2012)
Revenant (2/15/2012)
SQLRNNR (2/15/2012)
Daniel Bowlin (2/15/2012)
Brandie Tarvin (2/15/2012)
L' Eomot Inversé (2/14/2012)
D.Oc (2/14/2012)
fuzzificationPiper
ABBA
Mama Mia!
Dancing Queen
only seventeen
sweet sixteen
freshman fifteen
February 15, 2012 at 6:25 pm
create table #Student (
student_code char(1) not null,
stud_act_id int null,
fee decimal(19,4) null,
discount_rate decimal(19,4) null
)
insert into #Student
select 'A', 52165, 200, 60 union all
select 'A', 54902, 300, 50...
February 14, 2012 at 6:40 pm
Viewing 15 posts - 76 through 90 (of 172 total)