Viewing 15 posts - 1,651 through 1,665 (of 5,356 total)
Always a good thing to read http://www.sommarskog.se/dynamic_sql.html when it comes to this topic.
![]()
December 1, 2004 at 9:02 am
Hm, I'm not sure if I follow you here. Consider this:
SET NOCOUNT ON
DECLARE @TTT TABLE
(
THE_ID INT NOT NULL
, Name varchar(50)
)
INSERT INTO @TTT VALUES(1,'A');
INSERT INTO @TTT VALUES(2,'BB');
INSERT INTO...
December 1, 2004 at 8:47 am
That's because you use CHAR instead of VARCHAR. CHAR is fixed length no matter how many characters you actually entered.
December 1, 2004 at 6:52 am
From my understanding complicates this things. If you backup up the log after a full or differential backup (rather than before), you need to restore this log additionally when you...
December 1, 2004 at 6:29 am
Perhaps you might be better off posting this to http://www.dbforums.com/f8 or
http://www.idug.org/ (I think they also host a mailing list)
December 1, 2004 at 5:58 am
I'm no fan of dynamic sql, but in such cases it in superior to static sql. Have a look here http://www.sommarskog.se/dyn-search.html
December 1, 2004 at 5:32 am
That's your opinion and I respect it. Others might think different.
However, I also read his postings. I don't agree with him on many points, but actually there is no need...
December 1, 2004 at 5:21 am
what i do always find entertaining is that he NEVER actually offers any advice
Just out of curiosity, do you actually read what he writes?
December 1, 2004 at 3:33 am
Couldn't you users just hit Strg+1 in Excel? This is merely a presentational issue. Once you've formatted the sheet, it should be okay.
December 1, 2004 at 1:37 am
Hopefully this is the end of this line in the thread.
Did you really think so? ![]()
My whole point was that there is not built...
December 1, 2004 at 1:24 am
What about having a separate date table and joining against this one?
November 30, 2004 at 2:08 pm
Hm, why is everybody picking on Joe? Maybe because he is who he is? Right now I guess almost everybody here knows who Joe Celko is and also knows his "style"....
November 30, 2004 at 2:03 pm
It says look at a list and returnthe first non-NULL value, casting it to the highest datatype of the expressions in the list. It is a member of the CASE...
November 30, 2004 at 1:56 pm
This is the by far most complete link to BLOBs and SQL Server, that I know of: http://www.microsoft.com/resources/documentation/sql/2000/all/reskit/en-us/part3/c1161.mspx
As the above post is from the old forum software, here's what...
November 30, 2004 at 1:51 pm
Well, even if it doesn't break a thing, at best you're running an unsupported system. I wouldn't call Microsoft PSS with an issue with such a system. Not everything that...
November 30, 2004 at 1:33 pm
Viewing 15 posts - 1,651 through 1,665 (of 5,356 total)