GeekInterview.com
  I am new, Sign me up!
 

SQL Server FAQs


SQL Server FAQs

Questions: 68
Comments: 104
 SQL Server FAQs Tags
 Showing Questions 1-10 of 68 Questions
[1] 2 3 4 5 6 7 Next >>
 Sponsored Links

 
 SQL Server FAQs
Sorting Options :  

How to secure data in the SQL Server Database? 
View Question | Asked by : arabam

If a table has more than one index, how will you call a specific index in query?  
View Question | Asked by : wiinjeet

How to write query to unsort while retrieving data? 
View Question | Asked by : partha249

What is 'no lock' term in SQL, like "select * from table a (no lock)". What is its purpose? 
Latest Answer: It is useful to improve the performance in executing the query. However there is a disadvantage in using it. The disadvantage is that one may not be sure that they are getting the data which is currently being updated in the Table ie Without lock protection, ...
Read Answers (1) | Asked by : nasiriq

How to insert bulk data into the SQL Server? 
Latest Answer: Table to table data transferselect * into targettable from tableflat file to table data transferuse bcp command bcp pubs2..publishers in pub_out -c -t , -r r  ...

How to insert data in multiple tables at same time. using SQL Server 2000 
Latest Answer: Here is the example for you question. USE YourDB GO INSERT INTO MyTable (FirstCol, SecondCol) SELECT ‘First’ ,1 UNION ALL SELECT ‘Second’ ,2 UNION ALL SELECT ‘Third’ ,3 UNION ALL SELECT ‘Fourth’ ,4 UNION ALL SELECT ...

1. how to insert five rows in a table using single query(in ms-sql or oracle)2.how to delete duplicate values in a table. for example, the table containing five duplicate values(like name rani). 
Latest Answer: Inset data:insert into targettableselect top 5 * from sourcetabledelete data:1. select distinct * into targettable from sourcetable2. delete from sourcetable3. insert into sourcetable     select * from targettable ...

How can we dynamically assign parameters to a subscription in SQL Server Reporting Services 2005. 
View Question | Asked by : Sree_73

How to read the data from a pdf in SSIS? 
View Question | Asked by : MUNNU2U

How can we improve stored procedure performance? Explain the performance tuning techniques. 
Latest Answer: 1.  Use many WHERE clauses in the SELECT  statments.2.  Select only those fields which you really require.3.  Joins are expensive in terms of time. Join the tables using related fields manly indexed fields.4.  Don't use unused ...
Read Answers (1) | Asked by : MUNNU2U

View page [1] 2 3 4 5 6 7 Next >>

Ask A Question
Go Top
 Sponsored Links

 
Sponsored Links

 
Ask Question
You must login to Ask Question or Register your free account

Category:

 
Question Title:


Question in Detail:

Add this to my Subscribed Questions (?)
Send me email when new answer is posted (?)

 
Subscribe
Get Latest Updates Via RSS Reader or by Email
 Forum Discussion Subscribe to Forum Discussions Via E-Mail Latest Forum Discussions Subscribers
 Knowledge Base Subscribe to Knowledge Base Series Via E-Mail Knowledge Base Subscribers
 Learning Series Subscribe to GeekInterview Learning Series Via EMail Learning Series Subscribers
 Freelance Jobs Subscribe to GeekInterview Freelance Jobs Via EMail Latest Freelance Jobs Subscribers
 GeekInterview Blog Subscribe to GeekInterview Blog Via EMail GeekInterview Blog Subscribers
 Testing Interview Questions Subscribe to Testing Interview Questions Via EMail Testing Interview Questions Subscribers
 Oracle Interview Questions Subscribe to Oracle Interview Questions Via EMail Oracle Interview Questions Subscribers
 Java Interview Questions Subscribe to Java Interview Questions Via EMail Java Interview Questions Subscribers
 Latest Placement Papers Subscribe to Latest Placement Papers Placement Papers Subscribers
 Free Training Subscribe to Free Training Via EMail Free Training Subscribers
 Learn AJAX Subscribe to AJAXwith.com Via EMail AJAXwith Subscribers
About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape