Viewing 15 posts - 12,421 through 12,435 (of 13,465 total)
the above also would not take into consideration if there were 3 or more rows that should condense to a single time slot you'd need to handle it differently, most...
September 21, 2007 at 10:36 am
you gotta try what i posted: you end up with a 15 character string with the preceeding zeros you requested.
SELECT RIGHT('000000000000000' + CONVERT(VARCHAR,1),15)
SELECT RIGHT('000000000000000' + CONVERT(VARCHAR,86456),15)
SELECT RIGHT('000000000000000'...
September 21, 2007 at 10:28 am
you want to change all the objects back to smdb;
--find everything NOT owned by dbo, and create the sqls to change them to dbo as owner:
select 'EXEC sp_changeobjectowner...
September 21, 2007 at 10:22 am
it really depends on what your UDF is doing;
we need that code to determine whether this can be done cleaner; the more real details you post, the better we...
September 21, 2007 at 10:16 am
when you say the columns are not in the same order, what do you mean? is the data in name:value pairs, like 'fruit:apple;vegetable:peas and carrots;'
could you post a couple of...
September 21, 2007 at 10:08 am
i think i was able to do this as a set based operation by joining the table against itself:
take a look at the same data and my results, adn tell...
September 21, 2007 at 9:32 am
yes...but you have to take the same code from that function, which uses charindex and other stuff, and incorporate it into your query.
That makes it harder to read, but...
September 21, 2007 at 6:56 am
can you add another column of data which contains only the non-HTML data, and fulltext against that instead?
I've got this old 2000 proc to strip html out via TSQL, but...
September 21, 2007 at 6:39 am
Since your operating system is a server operating system(ie Windows2000 Server, 2000 Advanced Server, Windows 2003) the install dummies itself down to the Express Version.
I believe that is what you...
September 21, 2007 at 6:36 am
take a look at your WHERE statement:
WHERE TIMESTAMP=(SELECT MAX(TIMESTAMP)FROM DEMANDSPREAD)",
because this query is keying off of the TIMESTAMP column, it would greatly benefit from having an index on it.
that...
September 21, 2007 at 6:27 am
look in the script contributions here on SSC and find the split() function. it takes a string, and converts it to a table based on the delimiter.
select dbo.split(@a,',') would return...
September 21, 2007 at 6:21 am
to do what yoiu are asking, you need to take the RIGHT() 15 chars of 15 '0' + the convert of your value.
for example
SELECT RIGHT('000000000000000' + CONVERT(VARCHAR,GETDATE(),112) ,15)
look at...
September 21, 2007 at 4:51 am
anytime you SELECT something, you technically could insert it into another table.
if you did SELECT TOP 5 NAME FROM sysobjects WHERE xtype='U', there's 5 rows right?
if INSERT INTO SOMETABLE(TableNames) SELECT...
September 20, 2007 at 8:32 pm
--As Ray identified, an integer will return as a valid date, so you need to filter the results with what date ranges are acecptable for you:
declare @someval int,
@MinDate...
September 20, 2007 at 11:48 am
system stored procedures have a lot of notes in Books Online.
all the other stored procs would be created by your developers or some other party, so it's up to...
September 20, 2007 at 9:42 am
Viewing 15 posts - 12,421 through 12,435 (of 13,465 total)