Viewing 15 posts - 1 through 15 (of 153 total)
Mhlewis (4/29/2011)
May 9, 2011 at 2:55 am
Mhlewis (4/29/2011)
May 9, 2011 at 2:54 am
Hi Mhlewis,
Congratulations!!!
I am also planning to pass this certificate. Can u pls tell me which sql server 2008 edition will be the best for preparation?
Thanks in advance!
April 29, 2011 at 2:58 am
Hi Cláudio,
Kindly provide some sample of your both SPs.
September 7, 2009 at 6:18 am
Please try this,
IF EXISTS (SELECT srv.name FROM sys.servers srv WHERE srv.server_id != 0 AND srv.name = N'ServerName')
begin
EXEC sp_dropserver @server=N'ServerName', @droplogins='droplogins';
end
GO...
September 7, 2009 at 5:24 am
Are you able to connect to linked server(s) through SSMS?
Also check if there is any firewall effecting? Is all your server running with default port; OR any of ports are...
September 7, 2009 at 1:47 am
Network connectivity may be the problem, but not all the time.
When you are transferring data from SQL Server to ORACLE or vice-versa, data need to convert from their type to...
September 7, 2009 at 12:22 am
and This is the Error am getting occasionally
Could not find server 'ServerName' in sysservers. Execute sp_addlinkedserver to add the server to sysservers. Cannot find the object "TempRelease" because it does...
September 6, 2009 at 11:24 pm
Hi manikandan,
You can find more detailed description regarding your question here with, including described by sudhanva.
1) http://searchsqlserver.techtarget.com/news/article/0,289142,sid87_gci1052737,00.html#
2) http://blog.sqlauthority.com/2007/04/13/sql-server-stored-procedures-advantages-and-best-advantage/[/url]
With the same, this is just a quick reply from myside with hope...
September 5, 2009 at 4:50 am
Please understand the requirement before you reply. Which will help others to make effective use of this forum, and it will not have unneccesary posts/replies.
It also depends on how well...
September 3, 2009 at 11:35 pm
You can use CASE Statment here. See CASE (T-SQL) in BOL, it may help u..
I hope i could get proper idea regarding ur question as i m in hurry right...
September 2, 2009 at 3:31 am
There are plenty of ways to do so..
- You can create Stored Procedure with cursor
- You can create queries with subqueries
- create queries with CASE
did u try anything?
September 2, 2009 at 1:56 am
Hi,
1st of, all there is a field missing in ur table definition. I have corrected here with.
CREATE TABLE [dbo].[LINKS] (
[LINKS_ID] ...
September 2, 2009 at 12:47 am
Bob:
You are right! Actually i had different idea in my mind. I thought the code give here was just for our reference; and the actual requirement is just this calculation...
September 1, 2009 at 10:54 pm
Viewing 15 posts - 1 through 15 (of 153 total)