Viewing 15 posts - 58,966 through 58,980 (of 59,038 total)
Thanks Antares... didn't know that.
Hey paolice... how do you get DataLength to return the "defined length of your table's columns"? Couldn't find a thing about that in BOL.
May 18, 2004 at 5:42 pm
Errrr.... not sure just exactly what you're looking for so I offer this simple example on how to use a rowset from a stored procedure....
USE PUBS
GO
SELECT a.*
FROM OPENROWSET('MSDASQL',
...
May 17, 2004 at 8:19 pm
Unless it was a text or ntext field, why would you use "DATALENGTH" over just "LEN" like some of the other replies used? Just...
May 16, 2004 at 7:17 pm
Demicog,
To remove the first character of a column, no matter what the character is, try this...
SELECT SubString(columname,2,999) --Sub the "999" with the max width of the column
To remove...
May 12, 2004 at 10:27 pm
Here's a different way...
DECLARE @DesiredLEN TINYINT
DECLARE @FillChar CHAR(1)
DECLARE @ResultString VARCHAR(255)
SET @DesiredLEN = 25
SET @FillChar ='#' --So you can...
May 12, 2004 at 9:32 pm
Heber!
I've been looking for a really simple way to "add a running number" to a SELECT for a long time! Thank YOU! That IS a really neat trick!
May 8, 2004 at 9:20 pm
David,
Thank you for your kindness...
I've sent the code samples to 4 different people and have run it on the server at work. In every case, your code with the <>...
May 7, 2004 at 7:17 am
David,
I'd say that I owe you an apology! Your code does, in fact, return all of the rows expected! I don't know what I...
May 7, 2004 at 6:16 am
Ugh... No cursors...
although it can certainly be done with one
...
May 6, 2004 at 6:10 am
BJure,
When you say you tested "IT" and NOT EXISTS was faster, what is "IT"? In other words, what was "NOT EXISTS" faster than? Thanks.
May 6, 2004 at 6:05 am
Hey Matt,
I get it... when sorted in the order of the first column, you want to show only those rows whose value in the third column has changed from the...
May 5, 2004 at 10:03 pm
All of the methods about system tables and procedures that begin with "sp_" are great... but if all you want to do is get all the columnar info to show...
May 5, 2004 at 9:53 pm
Cmore,
Here's one more little "secret" of mine ... I never use BCP to import to a "live" table
May 4, 2004 at 7:21 pm
It, of course, depends on the SELECT statement in the NOT EXISTS but, I'd have to say "Yes", in most cases (was going to say ALWAYS but, sure-as-shootin', somebody would...
May 4, 2004 at 7:08 pm
Just a note... The IDENTITY function can only be used when the INTO clause (as Figaro did) is also present or you will get the following error...
Server: Msg...
May 3, 2004 at 5:44 am
Viewing 15 posts - 58,966 through 58,980 (of 59,038 total)