Tagged Questions

0
votes
2answers
14 views

Split string returning a record

Hi, I have a single column table which looks like this: Gaming | Austria | 47.9333, 15.1 Hebei | China | 39.8897, 115.275 This means that every row is a single string (VARCHAR) that contains some …
2
votes
3answers
208 views

Incorrect syntax near the keyword ‘with’…previous statement must be terminated with a semicolon.

Im using SQL Server 2005 . I have 2 WITH Clauses in my stored procedure WITH SomeClause1 AS ( SELECT .... ) WITH SomeClause2 AS ( SELECT .... ) But the error occurs Incorrect syntax near the …
0
votes
1answer
12 views

how to query to create a grouping of sets

I have a normal joining table with two columns that are keys to other tables. The records are customers mapped to a range of assets. asset_map ----------- customer_id asset_id …
0
votes
2answers
41 views

Diff b/w time in two rows in sql server

hi, i have a sitaution where i need to compare time in two diff rows,its like this categoryid item_id group date 1 10 abc 2008-03-07 03:02:00 1 35 bcd …
2
votes
2answers
62 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
1answer
26 views

Format a calender table in Sql Server (2005) + Set Based

I have created a Month table like Month Sunday Monday Tuesday Wednesday Thursday Friday Saturday January NULL NULL NULL NULL 1 2 3 January 4 5 6 7 8 …
1
vote
1answer
15 views

Any site out there that let’s me run test SQL queries on sample databases?

You wanna test a GROUP BY on some sample data in the browser without having to install a DB engine and you don't have a remote access to any cloud database? Yeah, me too. Let's say it is for …
0
votes
4answers
78 views

T-Sql - finding a group by it’s members

Given the following two tables on SqlServer 2005. IF EXISTS (SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'GroupItems') DROP TABLE GroupItems; CREATE TABLE GroupItems ( RowID …
0
votes
0answers
6 views

Reporting Services: Specify File Name in Email Subscription

Is there a way to specify a file name for a subscription using the email delivery method in Reporting Services? Unlike the file share delivery method, there does not appear to be a way to do this by …
0
votes
2answers
101 views

SQL Server: One Table with 400 Columns or 40 Tables with 10 Columns?

I am using SQL Server 2005 Express and Visual Studio 2008. I have a database which has a table with 400 Columns. Things were (just about manageable) until I had to perform bi-directional sync …
1
vote
4answers
73 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 …
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 …
0
votes
1answer
38 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
2answers
51 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 …
4
votes
11answers
6k views

Access to Result sets from within Stored procedures Transact-SQL SQL Server

I'm using SQL Server 2005, and I would like to know how to access different result sets from within transact-sql. The following stored procedure returns two result sets, how do I access them from, for …

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