Viewing 14 posts - 1 through 14 (of 14 total)
Doh, love the simple fixes, thank you so much!!!
January 9, 2008 at 9:25 am
Not when it's your General Ledger... There's time to do it right the first time or find a new job. You do not want to be the...
January 8, 2008 at 8:50 am
I think I've got hold of a proper process given the circumstances.
This will ALL be done on a test database first. All testing by users will be against a...
January 8, 2008 at 8:23 am
Jeff Moden (12/21/2007)
Mark,Any idea how to insert more than 1 value without a loop? Insert/Select doesn't seem to do it...
INSERT dbo.MyTable DEFAULT VALUES
GO
INSERT dbo.MyTable DEFAULT VALUES
GO
INSERT dbo.MyTable...
December 21, 2007 at 9:43 am
Which really brings up the whole subject of stored procedures. I'd rather use a stored procedure in my .NET code with variables than embed the code in a string....
December 21, 2007 at 8:29 am
My guess would be;
CAST('2007-12-20 12:15:01.111' AS smalldatetime)
You don't have the 'time' portion.
using your date of course...
December 20, 2007 at 9:09 am
Thanks Jeff. We have a database from a vendor with about 900 tables. We are changing our account structure. The account number is imbedded in over 300...
December 19, 2007 at 4:38 pm
I have no problem running this...
set @trig = @trig + 1
EXEC('select TabNam from Acct_Cursor where recno = ' + @trig)
December 19, 2007 at 3:38 pm
Not sure why you're using int(10) rather than just int.
You have;
DECLARE @prod_num INT(10)
use
DECLARE @prod_num INT
December 19, 2007 at 3:05 pm
Yes, of course, thank you!
December 19, 2007 at 12:18 pm
GREAT ARTICLE! Not unusual. It's great when you work with a true group of professionals, all with a goal to make the process work more efficiently, take suggestions and give...
December 5, 2006 at 10:47 am
Your table really had me confused after the PIVOT example. The '3' is hanging outside the table and I had to really look at that to figure out that it...
November 29, 2006 at 9:51 am
Looking forward to someone being able to explain why extent scan fragmentation shows in the high eighties or ninties AFTER turning OFF sql server services... No change whatsoever...
October 24, 2006 at 2:47 pm
Viewing 14 posts - 1 through 14 (of 14 total)