1
vote
1answer
38 views

Confused selecting Info From Two DB

i have two database AgencyDB(primary DB) and AgencyBackupDB(Deleted Info from AgencyDB by user) and i have this two table in both DB(but there is no relationship in AgencyBackupDB between Tables).this ...
0
votes
0answers
9 views

Appending XML Complex Elements in SQL Server 2008

I'm having trouble coming up with a scalable solution. How can I append complex XML elements in SQL Server 2008? For example, I have the following simple table: CREATE TABLE my_audit ( [id] ...
0
votes
1answer
7 views

Creating a mssql database backup using odbc on mac

So, MSSQL is nice enough to have given us a nifty little sql code for creating a database backup from a command line: BACKUP DATABASE [db_name] TO DISK = N'D:\backups\back.bak' WITH NOFORMAT, ...
1
vote
0answers
47 views

How to correct poor performance in T-SQL view

I have an ASP.NET MVC application that is using a T-SQL view I created as part of its data model. I'm able to pull in the view data but I'm getting very poor performance. If I do a SELECT * on the ...
0
votes
0answers
26 views

sql server 2008 not generating random value

I'm having a problem with random values being generated for each row in a result set in SQL Server 2008. I found a similar question here, but upon implementing the proposed answer, I saw the same ...
1
vote
0answers
29 views

Updating a table with millions of records, its been 4 days [migrated]

I am currently updating a table with millions of records, its been 4 days and query is still executing. I checked the activity monitor its shows that query is running. In event log there is no ...
-4
votes
3answers
35 views

Transfer Data from one table to another [closed]

I am new in SQL, week ago i uploaded a table(TABLE A) with almost 50 millions of records into the server (DRIVE A) using simple varchar datatypes. As in table we have date & currency format , my ...
-1
votes
2answers
28 views

Different calculation figure in arithmetic TSQL

I am getting diff. figures in my below equation written. SELECT 9.36 + 9.36 / ( 284.36 ) * 15.64 = 9.8748065528 (CORRECT) SELECT 18.72 / ( 284.36 ) * 15.64 = 1.0296131056 (INCORRECT) I have total ...
0
votes
0answers
27 views

How to declare Stored procedure with Table-valued parameter in PowerBuilder

I made a TVP stored procedure in MS SQL Server 2008: CREATE PROCEDURE [TVPSP] @CID INT ,@OID INT = NULL ,@GAS ParamTypeTVP readonly ,@ErrorText VARCHAR(100) OUTPUT AS BEGIN select 1 ...
0
votes
1answer
41 views

Using SQL server hierarchyid how to aggregate leaf node values at ancestor level

Base on the following output I would like to aggregate amounts at ancestor levels, ie, city/state/country. For example: In the example above we have the country Australia and two states (VIC and ...
1
vote
1answer
25 views

Get Direct Descendants Count with HierarchyId

SQL Server 2008 w/ hierarchyId Given this structure: CREATE TABLE Employee ( EmpId INT PRIMARY KEY IDENTITY, EmpName VARCHAR(100) NOT NULL, Position HierarchyID NOT NULL ) INSERT INTO ...
4
votes
1answer
30 views

MSSQL 2008 R2: Selecting one duplicate columns once and rest of the columns comma separated

I am using mssql 2008 R2 have below structure create table #Profile (pro_id int,surname varchar(30),firstname varchar(30)) insert #Profile select 1,'John', 'James' create ...
0
votes
1answer
39 views

How to delete the duplicate records from the whole database

Today I have tried to fire the job that checks for the redundancy in the particular table. I have one table EmpDetails Please find the screenshot to find the records in the table A job runs from ...
0
votes
3answers
54 views

SQL to Parse a Key-Value String

I have a comma delimited string like this: key1=value1,key2=value2,key3=value3,key1=value1.1,key2=value2.1,key3=value3.1 and I'd like to parse it into a table that looks like this: Key1 Key2 ...
0
votes
1answer
32 views

compare two excel files in a ssis “Foreach Loop Container”

Introduction : I have Multiple Excel files which loop through a Foreach Loop Container in SSIS Package. The first Excel file Excel1.xlsx contains the old data (for example :I have a column named ...
0
votes
1answer
33 views

Severe error on MERGE OUTPUT statement

I'm getting a severe error - code 20, from a Merge statement and I am not sure why. The MERGE runs fine if I remove the OUTPUT $action clause, and updates/inserts the target table as expected. As soon ...
0
votes
2answers
61 views

A SELECT statement that assigns a value to a variable must not be combined with data-retrieval operations

I need to assign the m.expiry_date to the variable @nextActionDueOn. ALTER PROCEDURE [dbo].[MembershipRetentionCheck] AS BEGIN SET NOCOUNT ON; declare @firstActionTypeId int = 25 -- ...
-2
votes
1answer
84 views

Output variable from dynamic SQL

I have an issue wen I try to output a value from a dynamic T-SQL Query inside of a stored procedure. I try to execute the following and simply output a 1 if something was found: SET NOCOUNT ON ...
1
vote
1answer
58 views

Restore of logfiles in SQL Server

I'm trying to write a script which will read a folder containing a full backup and X number of log files. My script fails when it starts the loop to read the log files. The error is cannot convert ...
1
vote
1answer
65 views

INSERT EXEC Statement cannot be nested

I have three Procedures MainProcedure,Procedure1,Procedure2 1) In Procedure1 I just have a select statement , 2) In Procedure2 am calling the Procedure1 and inserting the Output to a #table 3) In ...
0
votes
0answers
28 views

Password protected excel data to be imported in remote sql server 2008

I have an Excel which is protected by password(I know the pwd), I have to import the data from one of the sheets of excel file(.xls) and update one of the tables in the DB located in remote server. ...
0
votes
1answer
91 views

Why this Where condition returns 0 Rows?

SELECT * FROM tblName WHERE mode = '1' AND (category = @Category OR @Category = 'all' OR NewsId = @Category) I passed @Category='all'. This returns 0 rows. If OR NewsId=@Category this condition ...
0
votes
0answers
54 views

SQL Server - inconsistent insert speed, fast then very slow

I'm trying to diagnose a slow insert that I thought I had fixed but the problem is returning intermittently. It's literally a straight insert statement, it runs every evening and inserts around 80,000 ...
2
votes
3answers
74 views

IF statement in SQL WHERE clause

Is it possible to pass in a value to a stored procedure to tell it whether or not to append an OR statement to a SQL SELECT statement? I've tried something like so but it is not valid: SELECT ...
0
votes
2answers
29 views

T-SQL - Best way to select rows that corresponds to a category and default category if the category is not configured

I have a table of configuration data that can be associated to a Recipe (category to be more generic). Like this: Recipes: ID Name 1 Default 2 A 3 B Configuration Data ID equipment ParentID ...
0
votes
3answers
33 views

Is there a way to set variables in a Select statement that can be used in the same statements WHERE clause?

I'm looking for a way to set a variable in a Select statement so it can be later used in the where clause. Here is an example: SELECT DateDiff(d,Time_Stamp,GetDate()) as Var1 FROM Report Where Var1 ...
1
vote
1answer
26 views

How to only return in certain increments of days

I'm trying to return every 14 days starting from 12/31/2010 to 12/31/2011, but this statement doesn't seem to work SELECT DISTINCT Convert(varchar,Month(Time_Stamp)) + '/' + ...
1
vote
2answers
55 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 ...
0
votes
3answers
62 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
34 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
36 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
27 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
43 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
25 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
19 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
25 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
97 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
77 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
27 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
26 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
88 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
159 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
50 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
43 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
48 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
55 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
53 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 ...
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
73 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
86 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 2 3 4 5 90