Viewing 15 posts - 53,041 through 53,055 (of 59,068 total)
It will only show some pointer information in the Grid mode... you must be in the Text mode to see the data from a Text datatype.
Best thing to do would...
January 8, 2008 at 7:26 am
If you feel that you must split application code to make it easy to find, create a new database for each application... store only code and definition tables in these...
January 8, 2008 at 7:23 am
Heh, heh... in my shop, yes... 😛
Check the following URL... someone made the terrible mistake of naming tables and objects after customers and now he's in a bit of trouble...
http://www.sqlservercentral.com/Forums/Topic439936-5-1.aspx
Do...
January 8, 2008 at 7:17 am
This will do it... could turn it into a function...
DECLARE @PurchaseReqNo VARCHAR(50)
SET @PurchaseReqNo = '12,241,342,34234'
DECLARE @TempTab TABLE (Element INT IDENTITY(1,1) PRIMARY KEY CLUSTERED, ReqQty INT)
INSERT...
January 8, 2008 at 7:06 am
If you have TempDB set up to auto-grow by 10% like everyone else seems to, it will cause 73 fragments as it grows to 1 gig. And, I agree...
January 8, 2008 at 6:45 am
Just so you know... Books Online comes with SQL...
January 8, 2008 at 6:35 am
The beating is better...
If the code must ever be executed more than once, it will fail because the tables in the two or more instances of the proc will be...
January 8, 2008 at 6:29 am
Sandy (1/7/2008)
Hey Jeff,I just asked my question not what you suggested me.
I clearly understood what you suggest me, only generic name for the Database Objects.
Didn't look that way to me,...
January 7, 2008 at 10:22 pm
antonio.collins (1/7/2008)
i don't think a numbers table is ever necessary.
What do you use SQL Server 2000, instead?
January 7, 2008 at 10:17 pm
Yeaup, we all need rules... but to keep from becoming a non-thinking "SQL Clone", ya gotta read about the "5 Monkeys Experiment"... you'll see what I mean... 😉
http://www.lanebaldwin.com/v03I8.htm
Dunno if there's...
January 7, 2008 at 10:07 pm
If you use the extra parameter I posted in 2k or 2k5, it will also...
January 7, 2008 at 5:32 pm
Michael Valentine Jones (1/7/2008)
Your checks are not valid for SQL 7.0 and 2000. (This is the SQL Server 7,2000 T-SQL forum)
Maybe not in SQL Server 7 because of the...
January 7, 2008 at 5:22 pm
Yes... and sorry I missed that... I verified that Store_key was the same in both tables and didn't even look Orig_Store_key.
January 7, 2008 at 8:44 am
Carl Federl (1/7/2008)
January 7, 2008 at 6:26 am
Viewing 15 posts - 53,041 through 53,055 (of 59,068 total)