0
votes
2answers
20 views

SQL Server 2008 : TSQL, select same data for different times based on column value

I am using mssql 2008 R2, i have below structure create table #temp ( product int, [order] int, ord_qnty int ) insert #temp select 10 ,3,4 now, if ord_qnty is 4 , i ...
1
vote
2answers
15 views

How to select a column from one table and two columns from another table when both the tables have no relation in T-SQL?

I will explain my problem as simple as possible. I have written a select query Query1 on Table1 which gives the me the following result SELECT * FROM Table1 WHERE TypeID=1 ID Column1 ...
1
vote
1answer
32 views

User has permissions problems with SPROC even after granted permissions to all DB items

The MetricsUser account receives the following error when executing a stored procedure: "Msg 1088, Level 16, State 7, Procedure Data_SPROC, Line 59 Cannot find the object ...
0
votes
2answers
28 views

SQL Server query displaying null instead of 0 using Count and GroupBy

I have the following query : select Pr.Name, PS.TotalSales, PS.Truesales From Product Pr Left Join (select ProdudtId, TotalSales = COUNT(Transaction.Id), Truesales = ...
0
votes
1answer
22 views

Adding “db_executor” role for multiple roles in database

When i grant permission to add role db_executor for multiple users(d2mgr,d2user) when creating a new database i am getting db_executor role added only for single user(d2user) and what is the solution ...
-1
votes
0answers
36 views

Do I need to worry about my t-SQL statement locking up?

I have the following table created on SQL Server 2008: CREATE TABLE tbl ( id INT NOT NULL IDENTITY(1,1) PRIMARY KEY, dtIn DATETIME2, dtOut DATETIME2, type INT) This table will be populated ...
0
votes
0answers
19 views

Semantics of .WRITE(NULL, NULL, NULL) when updating a VARBINARY(max) column

What are the semantics of the following query UPDATE table SET column .WRITE(NULL, NULL, NULL) if column is of VARBINARY(max) type and its contents are not NULL? A quick test suggests that the ...
0
votes
0answers
18 views

Expand data in VARBINARY(max) column

What is the best way to expand the data in a VARBINARY(max) column, i.e. to set the data to a new length greater than the current length? ----------------------------------------- | current data ...
-1
votes
2answers
22 views

how to fetch number of records based on changing column value

I am having a LEAVE table as following EMPID LEAVEDT APPDT LEAVETYPE ------ ------- ------- --------- E1 10-3-13 5-3-13 CL E1 11-3-13 ...
4
votes
4answers
88 views

Explode range of integers out for joining in SQL

I have one table that stores a range of integers in a field, sort of like a print range, (e.g. "1-2,4-7,9-11"). This field could also contain a single number. My goal is to join this table to a ...
2
votes
1answer
72 views

Why can't t-sql find my function in my assembly?

I am trying to create a stored procedure using the .NET CLR. I successfully compiled the following code into a .NET 3.5 DLL. Imports System.Math Imports System.Text.RegularExpressions Imports ...
2
votes
1answer
26 views

syntax error in creating a CLR stored procedure

I trying to call my first CLR stored procedure in SQL server 2008. I have successfully compiled the DLL and created the assembly. Now I am trying to Create the stored procedure that references the ...
0
votes
0answers
20 views

TSQL 'create assembly' not working

I've added a simple reference to my SQL Server 2008 CLR project (hosted in VS2012). If I compile naively, it throws this: SQL06503: Assembly 'microsoft.sharepoint, version=14.0.0.0, ...
0
votes
3answers
57 views

Add Windows User to local SQL Server with PowerShell

I would like to add an existing local user to the SQL Server as a sysadmin, with PowerShell. fter some research I have the following script so far: $Username = "JohnDoe" ...
2
votes
4answers
143 views

SELECT COUNT(foreign ID) for each row in datatable

I have datable where I store my dailyContent selection. This is different for each day. When I select more then one day, then I need to return items, which are the same for all days. I have tried ...
0
votes
2answers
29 views

Find substring from string in sql

I am using SQL SERVER 2008.I have following string in sql. DECLARE @stringRTF VARCHAR(MAX) set @stringRTF = '{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fnil\fcharset0 Tahoma;}} ...
0
votes
1answer
38 views

Sql pivot between 2 tables

Table 1 (Resv) ResvID | ResvDateTime | BufferInd ----------------------------------------------- 1 | 2012-06-11 08:30:00.000 | 1 2 | 2012-06-11 08:30:00.000 | 2 4 ...
2
votes
3answers
44 views

How to join these two queries?

This query gets several AssignmentId's SELECT AS2.AssignmentId FROM dbo.AssignmentSummary AS AS2 WHERE AS2.SixweekPosition = 1 AND AS2.TeacherId = 'mggarcia' This query gets a value for only one ...
3
votes
1answer
40 views

SQL: find continuous date ranges across multiple rows?

I'm trying to get a start and end date combination for continuous spans of time worked. The spans can cross multiple rows, where the end date of the first row is the same as the end date of the next ...
1
vote
4answers
51 views

SQL Self Left Join Challenge

I have a table like this: ManufacturerID ProductID Price Region ============================================== 100 1 12.00 A 100 2 20.00 ...
0
votes
1answer
34 views

Stored procedure to copy a row and update one flag field for the row that was copied

I have an issue and I though this might be best way to solve it. I have never really had to use stored procedures and most of time I can control it from the code. But i really would like this to be ...
1
vote
1answer
48 views

Scalar Functions Used Together Timeout [closed]

Using either of the following functions alone perform well (dbo.getCorrectInventoryKey(Inventory_Key) and dbo.getEntityFullName2(Inventory_Key, '.')), but when used together ...
4
votes
3answers
68 views

Getting Average Time between list of successive dates in TSQL

I have a table of events, each row has a StartDateTime column. I need to query a subset of events(say by userID) and determine the average number of days between successive events. The table ...
4
votes
5answers
84 views

T-SQL if statment error

i'm trying to execute the following SQL 2008 code it says there is a problem near "=" and "else"... i cant understand what is wrong with the code ALTER PROCEDURE dbo.LoginEmp @username NVARCHAR(10), ...
1
vote
2answers
17 views

execute “sp_MSforeachtable” (SQL Server 2008 R2) from Excel 2003 using ADO

I want to analyse my DB and get the results for each table into an MS Excel worksheet by executing "sp_MSforeachtable 'EXECUTE sp_spaceused [?];';" from an ADODB Command or Recordset and then use ...
1
vote
2answers
38 views

TSQL - Assign value from query to variable if record exists in a single select

How I can improve below code to use 'select' only once? IF EXISTS (SELECT [NUMBER] FROM [TABLE] WHERE [ID_RECORD] = @id_record BEGIN DECLARE @tmp_variable SELECT @tmp_variable = [NUMBER] FROM ...
1
vote
3answers
104 views

Combine multiple rows into list for multiple columns

I'm aware that the "combine multiple rows into list" question has been answered a million times, and here's a reference to an awesome article: Concatenating row values in transact sql I have a need ...
0
votes
2answers
82 views

How can I replace all characters in a string with an asterisk, except for spaces?

Hello I'm not very good at SQL so any help would be great thank you. I have a table with 2 columns word and replacement right now my replacement column is null however i'm trying to do a update ...
1
vote
0answers
122 views

Using T-SQL DATEADD and DATEDIFF function

I am trying to understand the code that someone wrong to implement the following requirements in calculating a date: The derived JE_ACCTNG_DT is set equal to the last day of the prior month of the ...
2
votes
2answers
64 views

Add logic inside of a SELECT

Note in the below query that the first two queries inside of the parenthesis, I've added two repeated queries, I'm sure that this is not a good practice. I need to repeat this query anytime where I ...
0
votes
1answer
52 views

Declare a variable inside of a projection

Note below that I need to declare a variable which is the result another query. If don't do this, I need to repeat this query anytime where I need the value. SQL Server is throwing an exception about ...
1
vote
0answers
93 views

Dont want Select variable displaying values

It might be simple but I been having trouble figuring out. I have a piece of code(Similar to Below Code) where I am assigning bunch of values to bunch of variables via select, it does the job but when ...
0
votes
2answers
30 views

TSQL Use record currently being inserted to select data in another table

Very new to TSQL... I have the following table called "tblinit": Account_Num UserID Task_Percent ----------- ------------ ------------ 1 john.smith 0.75 I would like ...
0
votes
1answer
30 views

Enforcing unique date range fields in SQL Server 2008

First up, check out this VERY similar question: Unique date range fields in SQL Server 2008 The answer on the above question (by David Hall) is 90% what i need with one small ommision, take the ...
0
votes
1answer
23 views

Update DATETIME values to <= GETDATE()-1

I'm looking to update existing DATETIME values to yesterdays date and previous depending on their DATE order but keep the TIME part as it is. For example assuming today's date is 2013-05-15 ...
0
votes
4answers
59 views

Getting count of records in child table using select statement

I have a stored procedure in which i am trying to select all the columns of a table Table 1. There is another table which uses Table1 primary key as foreign key. I want to count number of records in ...
0
votes
1answer
22 views

How to assign value to columns from StartDate to EndDate when StartDate is a fixed date, e.g. Jan 2013

I have table like this: Country Project InvCode InvName Site WorkLoad StartDate EndDate USA 1234 2020 Jane Box 101 20 2012-02-10 2013-04-15 USA 1234 2020 Jane Box ...
-1
votes
4answers
107 views

Insert common data from one database into another?

I have database X and database Y. X and Y have some tables and columns which are of the same schema. There is no data in database Y. What SQL/T-SQL can I write in order to transfer all data from ...
0
votes
3answers
33 views

update using INNER JOIN

What is going wrong in this SQL statement , i can't find anything Wrong UPDATE Master_Adjust INNER JOIN [dbo].[Master] ON Master_Adjust.Empno = [dbo].[Master].Empno ...
0
votes
0answers
58 views

How can I easily use TVPs with a linked server?

The problem: I am using a linked server to call stored procedures from a remote server. While this works fine most of the times, I have a number of stored procedures that use table-valued parameters ...
4
votes
3answers
56 views

Update column by parsing another column with T-SQL

I have this table and data in my database: tblPhotos ID | Title | Description ------------------------------ 1 | NULL | Some data - Title 123 - Subtitle - Photographer: John Doe 2 | NULL | Some data ...
0
votes
2answers
29 views

Update with subquery get error: “The multi-part identifier could not be bound.” (Sql Server 2008)

I'm trying to update a set of records in a table with values from another set of records in the same table. When I run this query, I get error: Msg 4104, Level 16, State 1, Line 1 The ...
0
votes
2answers
56 views

Random number in table SQL Server

Please help me CREATE TABLE UNIVERSITY ( ID INT, FirstName nvarchar(100), LastName nvarchar(100) ) Need that the ID is automatically taken randomly always different ...
0
votes
2answers
33 views

How can I format a decimal value in lakhs?

I have a decimal value. I need to convert it into comma separated value and represent it as currency. Using money datatype I can achieve it. But when I use money the value is comma separated interms ...
0
votes
1answer
61 views

select TOP n Rows from table where n is in another table?

How can I achieve this without using Dynamic SqlQuery? I have this Query, SELECT TOP n FROM mytable WHERE ID = @id To get the value of n, SELECT nCOUNT FROM myAnotherTable WHERE ID = @id Can I ...
3
votes
2answers
43 views

Update XML stored in a XML column in SQL Server

I have a sample table in SQL Server 2012. I am running some queries against but the .modify() XQuery method is executing but not updating. Here is the table For this just trying to update settings ...
0
votes
1answer
29 views

Syntax error using a leading parenthesis with insert into

The left paren directly after the "into @gutsTVP" breaks this. The error is on the right paren on line 12. If remove that first set of parens around the first union it runs but it returns the wrong ...
2
votes
2answers
66 views

SQL where Date from today minus and plus days

and I have codes like this: select CUS_Id, CUS_Name, CUS_JoinDate from CUSTOMER where CUS_joinDate between '04-12-2013' and '06-12-2013' How can I make it 'where' CUS_JoinDate will be ...
0
votes
0answers
59 views

Update A Single Row While Same Table Being Updating From Another Transection

I've job which is, Update crawproduct Set fiyat = 100 Where guncellemetarihi < GETDATE() And I'm getting deadlock when I tried this from another job at the same time Update crawproduct Set ...
1
vote
3answers
41 views

Way to generically iterate through entities in XML?

Is there a generic way, in T-SQL, to iterate through an xml variable and get the xml for each entity in turn? DECLARE @xml xml = '<Entities> <Entity key="4" attrib1="abc" attrib2="def" ...

1 2 3 4 5 89