Viewing 15 posts - 10,366 through 10,380 (of 15,381 total)
ramyours2003 (10/15/2012)
hOW TO DELETE THE ROWS FROM ATABLE WHICH IS CONFIGURED IN REPLEICATION ?
There is nowhere near enough information here to provide anything resembling an answer. What type of...
October 15, 2012 at 10:53 am
prathibha_aviator (10/15/2012)
I got itSELECT Customer.CustomerName, Count(customerorders.customerID) AS Count
FROM Customer
JOIN CustomerOrders ON (Customer.CustomerID= CustomerOrders.CustomerID)
Group By CustomerName
Perfect.
October 15, 2012 at 10:32 am
sunny.tjk (10/15/2012)
Why is order of the index important when we create a composite index? Could someone explain this with an example, please?
http://msdn.microsoft.com/en-us/library/ms181154%28v=sql.105%29.aspx
October 15, 2012 at 10:28 am
prathibha_aviator (10/15/2012)
I have tried using the below code
select...
October 15, 2012 at 9:13 am
Take a look at Grant's article here. http://www.sqlservercentral.com/articles/Backup+%2f+Restore/recoverytoapointintime/1914/%5B/url%5D
That should have an answer for you.
October 15, 2012 at 8:24 am
You can't see it in SSMS. The most it will return is 65k. If you need more text you need to use another application.
--edit--
Just realized you are asking about...
October 15, 2012 at 8:18 am
Thanks for the ddl and sample data. I assume that the status column in cropresults should be a datatype int?
Can you explain the logic for the output? It seems that...
October 15, 2012 at 8:16 am
Or even better, change the column type so you don't have to continually fight the fact that you are storing numbers in a character column.
October 15, 2012 at 7:51 am
“Relational Epiphany”
That is a great phrase Joe!!! Relevant to both SQL and marriage. 😛
October 12, 2012 at 2:23 pm
See if this article can help. http://blogs.msdn.com/b/sql_protocols/archive/2005/12/22/506607.aspx
October 12, 2012 at 2:01 pm
The best thing you can do is to Dispose of the connection object as soon as you are done with it. This can be handled in code a number of...
October 12, 2012 at 1:15 pm
Your calculation seems have changed since your first post?
21 20 5 6 10 Task 1.5.1.1.1
I am trying to create a recurive function.
Calculation starts from the bottom
(5*6)+10 = 40
it goes...
October 12, 2012 at 12:32 pm
OK one more time, can you post this as inserts to a temp table so I can actually read it? And again what are the values you would pass in...
October 12, 2012 at 10:27 am
Can you post the table with the intermediate amounts? It is very unclear what you are trying to do here. Given the procedure you created what would be the values...
October 12, 2012 at 10:08 am
PFlorenzano-641896 (10/12/2012)
Here is my situation; I have a stored procedure that will be executed 'ad-hoc' as a report. The stored procedure has several temp tables being executed and does...
October 12, 2012 at 9:36 am
Viewing 15 posts - 10,366 through 10,380 (of 15,381 total)