Viewing 15 posts - 106 through 120 (of 153 total)
Please provide your select query.........
April 16, 2009 at 3:30 am
Thank you all,
I have decided to do MCTS for SQL Server 2008.
Kindly let me know if there is any fine study material or site .
April 15, 2009 at 10:47 pm
You can create a same table in Database7, and a before update trigger on tableA (in every database, if the filed is not updated in all tables at the same...
April 14, 2009 at 5:51 am
Hi All,
Thanks for you valuable advice. I have visited this link: http://www.microsoft.com/learning/mcp/certifications.mspx
And according to that, if i want to have certificate in 2005, then i need to apply...
April 13, 2009 at 11:06 pm
Actually the installation order effects a lot. You need to install
1) IIS 7
2) .NET framework 3.5
3) SQL Server 2008
4) Visual Studio 2008
Please check your installation order (also check your version...
April 13, 2009 at 10:35 pm
Yes champion(Steve), you are right! But that's my confusion point.
Actually, I have experience in SQL Server 2005 as we are using it (earlier we were using 2000). But now we...
April 13, 2009 at 10:19 pm
Sorry, it was my mistake... 🙂
I am software developer and having experience in SQL Server for more than3 years. Now, i wanted to have certification in sql.
April 13, 2009 at 12:26 pm
Yes Jack,
I am also feeling something missing in code!
@arup_kc
can you flash some more lights on this topic? Pls provide some more details..
I m really very eager to know abt it...
April 13, 2009 at 11:33 am
Ok. so pointer is again come to first question of this post.
Why it is giving error in his execution?
April 13, 2009 at 7:19 am
GO is not a Transact-SQL statement; it is a command recognized by the sqlcmd and osql utilities and SQL Server Management Studio Code editor.
SQL Server utilities interpret GO...
April 12, 2009 at 10:44 pm
ohh it was totaly my mistake... pardon for that.. 😀
the code is working... 🙂
April 12, 2009 at 10:29 pm
Is this because INT is 32-bit signed integer and BIGINT is 64-bit signed integer..?
INTEGER: The JDBC INTEGER type represents a signed 32-bit integer. This maps to a SQL Server int...
April 11, 2009 at 6:03 am
Will this work?
declare @sample table (Status varchar(10), State varchar(20), Name Varchar(10))
insert into @sample
select 'Pending', 'Nebraska', 'ABC' union all
select 'Pending', NULL, 'XYZ' union all
select 'Active', NULL, 'PQR'
select *
from @sample
where state...
April 11, 2009 at 3:00 am
In sql server 'Go' will apart all statment in a single execution into multiple batches. The batch till first Go statement will execute first, and till second Go statement will...
April 11, 2009 at 2:53 am
Hi all,
sorry for the delay in reply...
by "multi languague" mean - I have many applications if different languagues, some are not using any .NET frame work.. but most of...
April 9, 2009 at 11:31 am
Viewing 15 posts - 106 through 120 (of 153 total)