Search Results

3
votes
3answers
315 views

Get columns of a table SQL SERVER

Hi How can I get the name of all columns of a table in SQL SERVER 2008? Thank you …
0
votes
2answers
64 views

Opening a new query window in management studio with prepared “select * from” text

Hi I edited SQLFile.SQL as "select * from" in order to have a new template when I create a new query. but it seems that still I have a blank window.... what's problem ? …
1
vote
1answer
98 views

Best way of sending a file to SQL server and save it, then reading it from DB?

Hi I am developing a software with vb6.0 :( . I wanna to know that what the best code for saving a file in SQL server and then reading from it is? I should say that I use ADODB.Stream wh …
1
vote
10answers
340 views

Need only Date from DateTime

Hi I have a variable of DateTime type in SQL. Just need to have Date part of it. please Help? …
0
votes
1answer
59 views

Do table hints in the view definition affect the view?

hi We know that we can use table hints when selecting records in our own queries. my question is: when we create a view and use table hints such as "Nolock", "Holdlock", etc …
1
vote
4answers
540 views

What is the benefit of using “SET XACT_ABORT ON” in a stored procedure?

hi all. What is the benefit of using "SET XACT_ABORT ON" in a stored procedure? …
1
vote
7answers
82 views

What is the best way of determining whether our own Stored procedure has been executed successfully or not.

Hi I know some ways that we can use in order to determine that whether our own Stored procedure has been executed successfully or not. (using output parameter, putting a select such as select 1 at …
5
votes
3answers
838 views

Is there any difference between DateTime in c# and DateTime in SQL server?

hi Is there any difference between DateTime in c# and DateTime in SQL server? …
1
vote
3answers
76 views

How to read and learn Execution plan of a T_SQL?

Hi How to read and learn Execution plan of a T_SQL statement? …
0
votes
3answers
41 views

Working with Time portion of a DateTime Column in SQL Server2008

i have a table in SQL Server 2008 which its name is Table1. Table1 has a column named CreateDate which its data type is datetime. Now, I wanna to get records that their createDate field values are …
1
vote

delete duplicate rows

1 - Create an Identity Column (ID) for your table (t1) 2 - Do a Group by on your table with your conditions and get IDs of duplicated records. 3 - Now, simply Delete records from t1 where IDs IN du …