Viewing 15 posts - 46 through 60 (of 272 total)
Rows are inserted into a table.
If I substitute the word TABLE for the word FUNCTION, your questions begin to make some (not completely) sense.
April 13, 2012 at 12:47 pm
Please provide DDL and sample data.
Also, it would be helpful to attach a query plan so we can see what's going on.
April 12, 2012 at 8:35 am
It's hard to say without a proper example with DDL and sample data. You've got item1 in both sides of your CASE .. ELSE expression.
But perhaps a "SELECT TOP...
April 12, 2012 at 8:33 am
Indexing good.
Think of it like a book. If you know the term you are searching for, you turn to the index in the back of the book. The...
April 11, 2012 at 12:05 pm
What is returned from the following query?
select * from distribution.dbo.MSsubscriptions
... or if there is an error message, what is the message?
April 10, 2012 at 11:46 am
Jason is correct, there is no error when I run this code:
CREATE TABLE #tablename (wo int, last_chg varchar(7),
amt_0109 varchar(7),
amt_0209 varchar(7),
amt_0309 varchar(7),
amt_0409 varchar(7),
amt_0509 varchar(7),
amt_0609 varchar(7),
amt_0709 varchar(7),
amt_0809...
April 9, 2012 at 12:39 pm
Try :
+ ' SET insert_date = ''' + @InsertDate + ''''
April 9, 2012 at 7:01 am
I don't understand what you're trying to do. Your DDL is incorrect, but I assumed you are trying to create a table. I don't see a view except...
April 3, 2012 at 7:51 am
SELECT * FROM TABLE1
ORDER BY DEPENDENCY
It appears from your sample data this would come out in the correct order, but if your sample data doesn't reflect your actual data, you...
April 3, 2012 at 7:24 am
Yes, you can shrink logfiles without the database going offline.
I don't recommend shrinking database files if it can be avoided.
November 21, 2011 at 12:17 pm
Sapen (11/9/2011)
Can we replicate all the tables from one node to another in peer to peer transactional replication. Also at any given point of time can a end user...
November 15, 2011 at 8:55 pm
The table designer does not work that way.
The description field uses the extended property 'MS_Description'. You can edit and publish this in a bit more friendly fashion using the...
October 25, 2011 at 3:44 pm
Can you please post the actual query, DDL and sample data?
October 20, 2011 at 5:49 pm
hindle.steve (10/20/2011)
If...
October 20, 2011 at 1:20 pm
Viewing 15 posts - 46 through 60 (of 272 total)