Viewing 15 posts - 1,216 through 1,230 (of 3,011 total)
sharonmtowler (10/5/2010)
is there a way to make the datetime just a date???
Convert it to the DATE data type.
October 5, 2010 at 7:33 am
The title of this topic seems a little strong for what is really just a gripe about what Microsoft charges for SQL Server Developer Edition.
October 4, 2010 at 3:20 pm
Getting back to the initial question: "So, are men and women different?"
The answer is obviously yes. That's why men are called men and women are called women.
October 4, 2010 at 3:09 pm
evanrich (10/4/2010)
...I do have one bit of knowledge to share with any other NEW people that read this... and this this: If you don't know anything about what...
October 4, 2010 at 3:01 pm
It sounds like you are seeking a technical solution for what is really a business problem: your desire to continue a monopoly on report development.
If your company cannot continue to...
October 4, 2010 at 2:08 pm
This is probably the fastest code for the conversion (assuming that the year is an integer in the form YYYY)
select dateadd(month,(12*@Year)-22801+@Month,@Day-1)
If the year is two digits, you will have to...
October 4, 2010 at 1:22 pm
How does the size of the .rar file compare to the size of the .mdf file?
Wouldn't it be simpler to provide your support vendor with a copy of a database...
October 4, 2010 at 1:15 pm
With transaction log backups (and a full backup), you can restore to any point in time, but with differential backups, you can only restore to the point where the differential...
October 4, 2010 at 1:07 pm
If the phone number is always stored in format 999-999-9999, then the code below should work without dynamic SQL.
declare @phone nvarchar(50)
set @phone = N'7243426833';
select @phone = stuff(stuff(@phone,7,0,'-'),4,0,'-')
declare @pt table (localphone...
October 4, 2010 at 10:39 am
Since you can't actually reorganize the table while it is a heap, I am sticking by that statement.
Solutions involving a reload of the table are possible, but that just...
September 30, 2010 at 2:59 pm
PaulB-TheOneAndOnly (9/30/2010)
Michael Valentine Jones (9/30/2010)
PaulB-TheOneAndOnly (9/30/2010)
Michael Valentine Jones (9/30/2010)
If you leave the table as a heap, you cannot reorganize the table to remove unused space.why not?
Since, it is a heap...
September 30, 2010 at 2:27 pm
Do you have the operator configured to do a Net Send, instead of email?
September 30, 2010 at 2:09 pm
Lynn Pettis (9/30/2010)
... I have seen his attitude change once when the OP explained he was dumped into the situation he was in and that he was not a DBA/Database...
September 30, 2010 at 2:06 pm
Did you make the profile a public default profile?
Were there any error messages in the Database Mail Log?
September 30, 2010 at 1:51 pm
PaulB-TheOneAndOnly (9/30/2010)
Michael Valentine Jones (9/30/2010)
If you leave the table as a heap, you cannot reorganize the table to remove unused space.why not?
Since, it is a heap with no particular organization,...
September 30, 2010 at 1:35 pm
Viewing 15 posts - 1,216 through 1,230 (of 3,011 total)