Tagged Questions

0
votes
6answers
65 views

Combining 2 TSQL statements into 1

Hi, I need to combine the following two SQL statements into one. Any help is greatly appreciated. Thanks. SELECT C.*, M.members_Email FROM tbl_Campaigns C JOIN tbl_Members M ON C.campaign_MemberId …
2
votes
1answer
47 views

SQL Server 2005 T-SQL Problem: Need help in omitting records

Good day! I need help in writing a query.. I have records in a table below.. The condition would be no records should be displayed if the succeeding records' new_state was repeated from the previous …
0
votes
2answers
48 views

The query has been canceled because the estimated cost of this query (1660) exceeds the configured threshold of 1500. Contact the system administrator.

"The query has been canceled because the estimated cost of this query (1660) exceeds the configured threshold of 1500. Contact the system administrator." I am getting error as above on live while …
1
vote
5answers
44 views

SQL Server: How do you remove punctuation from a field?

Hey everyone, Any one know a good way to remove punctuation from a field in SQL Server? I'm thinking UPDATE tblMyTable SET FieldName = REPLACE(REPLACE(REPLACE(FieldName,',',''),'.',''),'''' ,'') …
0
votes
2answers
21 views

TSQL table based function returning different tables

Hi, I am triyng to write a table based fuction so it returns a different results depending of the value. I have: CREATE FUNCTION [dbo].[tblfn_GetAnyDataSet_As_View] (@DataType as varchar(50)) …
1
vote
2answers
26 views

Find usage of a function in SQL server

Is there a way to find a usage of a function in SQL server 2008?
1
vote
2answers
17 views

Trying to add a column to a temp table fails

I have looked through this a number of times this morning and cannot find the issue. Its probably dead simple and I'll feel like an idiot when someone points it out. What would this SQL fail? -- Get …
0
votes
6answers
51 views

SQL query getting data

In SQL Server 2000: hello i have a table with the following structure: sku brand product_name inventory_count ------ ------ ------------- --------------- c001 honda …
1
vote
4answers
68 views

SQL Server Stored Procedure - ‘IF statement’ vs ‘Where criteria’

The question from quite a long time boiling in my head, that out of the following two stored procedures which one would perform better. Proc 1 CREATE PROCEDURE GetEmployeeDetails @EmployeeId …
1
vote
1answer
27 views

Trying to convert “yy/mm/dd hh:mm:ss” (stored as char) into datetime using computed column

Hi. This seems like it should be simple but it's driving me up the wall. I have two columns - 'tx_date' and 'time' stored each as char(10). (bad database design I know, but wasn't my design) From …
1
vote
1answer
36 views

What is the point of “ROLLBACK TRANSACTION named_transaction”?

I've read through MSDN on ROLLBACK TRANSACTION and nesting transactions. While I see the point of ROLLBACK TRANSACTION savepointname, I do not understand ROLLBACK TRANSACTION transactionname. It …
0
votes
1answer
25 views

Intellisense and code formatting T-SQL for SQL Server 2008 in Visual Studio 2008?

I'm looking for a Visual Studio 2008 add-in / plug-in that can provide Intellisense and flexible code formatting for T-SQL for use with SQL Server 2008. It needs to work with Team System Data Edition …
0
votes
2answers
33 views

stored procedure error handling

i have this procedure for inserting rows in tables(sql server 2005) CREATE PROCEDURE ans_insert ( @q_desc varchar(2000), @sub_id int, @marks int, @ans1 varchar(1000), @ans …
0
votes
1answer
37 views

How do you concatenate strings inside of a CONTAINS in SQL Server 2008?

SQL Server 2008 is telling me that it doesn't like the "+" in the CONTAINS. Not sure what I'm doing wrong here. INSERT INTO dbo.tblImportTitles ( ImportTitleGUID, UserGUID, TitleName, …
0
votes
4answers
34 views

Update table SQL query help

I have a database student(attribute - studentid). studentid is a varchar. Now I want to add 'P' at the end of all studentids. 12 -> 12P 234 -> 234P What will be the sql query for this?

1 2 3 4 5 165 next
15 30 50 per page