Use this tag for questions specific to the 2008 version of Microsoft's SQL Server.
0
votes
0answers
7 views
sql server schedule reset not woking
I set up a scheduled job in SSMS (SQ 2008 R2) to run every two weeks on Saturday morning at 00:30. I chose a start date that was incorrect (1 week off). On 5/4 when I noticed the job had not run. I ...
2
votes
1answer
85 views
Use conditional computed column in SQL query
I have two tables viz. #Exported_Data and User_Details.
#Exported_Data: (User_Id, User_Name, Status, Office_Id, Dept_Id, Service_Id, Allocation)
User_Details: (User_Id, Office_ID, Dept_Id, ...
0
votes
1answer
17 views
How to do arithmetic operations on data fields and aggregate functions in where clause?
I'm using this query to return the distribution of a float field around its average:
SELECT COUNT(*) AS [Count], Result FROM (
SELECT ROUND(Result - AVG(Result) OVER(), 1) Result FROM Results)
...
0
votes
0answers
9 views
Error Exporting data from excel to OLE DB Destination using BIDS
Good Day pals :)
here, I'd like to export my data from excel thru my database in sql server 2008 via bids project.
I have create the excel source, ole db destination, and run them.
Unfortunately I got ...
0
votes
1answer
21 views
Unable to connect to SQL server 2008 [closed]
I am not able to connect to SQL Server. It is showing the following error:
Additional information:
A network-related or instance-specific error occurred while establishing a connection to SQL ...
0
votes
2answers
86 views
How to arrange rows of a table in ascending order and to save the table simultaneously?
I want to create a new table by arranging the rows in ascending order from the existing table. The code I am trying to use is:
SELECT *
INTO new_table
FROM existing_table
ORDER BY col1, col2
...
2
votes
2answers
63 views
Sum the different date total
I have following data in my sql table:
Tran_Date | Amount
2013-05-01 20:09:49 | 50.00
2013-05-02 04:09:49 | 50.00
2013-05-02 20:09:49 | 500.00
I want sum the amount before next day ...
0
votes
1answer
42 views
Can't login to SQL Server with Windows Authentication [closed]
I've just installed SQL Server 2012 and open the SQL Server Management Studio and when I try to login this problem occurs:
Can't connect to .....
My question is how can I know what is the server ...
2
votes
2answers
61 views
How to Get a Single SQL Query From Complex Query with Temp Table in SQL Server 2008
I have a Table named #Temp in SQL Server 2008 like this
**Ticker Fin_Yr Qrtr_No Qrtr_Date Total_Amt**
AAMRATECH 2012 Q1 9/30/2011 11.875521
AAMRATECH 2012 Q2 12/31/2011 ...
0
votes
2answers
28 views
Foreign Key referencing Primary key in the same table
I have a table with two columns as the primary key. These two columns are also a foreign key that references the same table:
(This table was created some time ago by someone who has since left the ...
0
votes
1answer
21 views
Handling Multiple Values in SS Reports
I have a question, I have an SSRS report with multiple value field, I was just wandering how can I parse it from the SQL stored procedure that I have created eg.
Multiple Values -> ...
0
votes
1answer
40 views
Counting similar values on same row, different columns
I want to write a query that will count how many times a certain value appears on each row - on the full table I have more columns and I need to count how many times "9" (for example) appears in all ...
4
votes
4answers
91 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
76 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 ...
0
votes
0answers
17 views
What is USING keyword in SQL Server 2008?
I know the beautiful usage of the SQL clause "USING": it is similar to NATURAL JOIN but you must detail the join columns; you can join more simply (and faster) the tables that have the same key and ...
-1
votes
0answers
31 views
Execute .js file within a mssql stored procedure
I have a web application that gets the shortest distance from a given point to a given array of points.
This works based on a javascript file that gets loaded when user requests the info.
Now, I ...
3
votes
1answer
60 views
Row numbers using group by and several columns
I am having some trouble with a SQL request I have to build in order to display data in a grid.
I have that temporary table as below (I put numbers instead of email address for the example):
GroupID ...
0
votes
0answers
20 views
Does SQL Server optimizer do something about repetition of parameter adjustments?
I have a stored procedure with the following body (and arguments @ReceviedSince, ReceivedUntil and Filter):
SELECT
[TQ].[Guid],
[Q].[Text],
[A].[Text],
...
-6
votes
0answers
48 views
How to select some records if there is a specific count of them [closed]
I have three tables (Employee, Department, JobTitle)
Employee (ID PK,Name,Department_ID FK,JobTitle_ID FK).
Department (ID PK,DepartmentName)
JobTitle (ID PK,JobTitle)
What is the SQL query to ...
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 ...
-1
votes
2answers
52 views
How can I populate a table with all combinations of letters and digits from 01 to ZZ?
I have a tableA (ID INT Identity(1,1) , Name VARCHAR(2))
I want to populate the table with name values from 01 to ZZ: 01 , 02 , 03 , 04,. A1, A2, A3,.. Z1,Z2..
Every value will be distinct.
0
votes
0answers
21 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
1answer
12 views
Using alias in the same select
Once I set an a column name like this SUM(someColumn) AS [ColumnName], how can I use it afterwards ?
Let's say I build a query like this :
SELECT SUM(foo.A + foo.B + foo.C + foo.D + foo.E) AS ...
0
votes
0answers
16 views
How do I model a fact with start/end dates to relate to a daily measure?
So I have a Sales Cube with Sales By Item By Day.
I want to bring in Bookings/Orders and compare those to the sales to see if we are booking the right numbers.
The bookings fact is a single record ...
0
votes
3answers
69 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"
...
0
votes
0answers
24 views
Generate Scripts Wizard hangs without scripting all objects
I am trying to generate the database scripts(tables,triggers,views,procedures) in sql server 2008, all of sudden the scriptting wizards hang up at the end state saying that scripting is completed but ...
0
votes
0answers
28 views
Re enable Windows Authetication in SQL Server [migrated]
My old employee has disabled Windows Authentication in our server. Now I'm not able to access the SQL Server even though I have Administrator access to the server. I need to reset the sa password.
...
1
vote
1answer
14 views
Unable to use sql server user name and password
my user name is Work/Sainath and password is empty and i use windows authentication to login. My server name is '.' and when i enter this as connection string in visual studio web form i get an error ...
0
votes
2answers
45 views
Sql server relationship using between value
I have a database that contains 2 tables (sql server 2008):
LenderCommission
ID int
Commission decimal
CommissionTier
ID int
MinCommission decimal
MaxCommission ...
2
votes
4answers
147 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
0answers
12 views
How to read sql ce(.sdf file) database/table from SSIS package?
I want to read .SDF file(3.5) from SQL Server Integration Service 2008.
How can I do this?
Please provide me any link/tutorials for this.
1
vote
2answers
15 views
How to eliminate this cursor (causing a deadlock)
We have got a stored procedure. Part of it is executing a cursor over a select statement that involves 6 different tables with inner joins.
In the cursor body we execute 3 other stored procedures ...
-1
votes
2answers
83 views
Wrong SQL query? [closed]
i am right now creating an SQL query for an sccm 2012 database and want to have a look into the installed programms from all clients.
But after request all clients have the same programms.
Heres the ...
4
votes
1answer
31 views
How to do the Grouping?
I have a table as under
I want the output to be as
I fire the below query
;WITH CTE AS
(
Select script_Type = 'SP',detail_warnings ='Consider using EXISTS predicate instead of IN ...
0
votes
2answers
40 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;}} ...
6
votes
2answers
83 views
order by 1.99.10 and 1.99.9 sql server
Sorry about my mistake, I should provide the real sample for the question, my ID included characters inside:
sample code:
select ID from student order by ID
Expected output from mine but ...
2
votes
0answers
45 views
SQL Express client memory usage differs to SQL Enterprise client memory usage
I am experiencing a big difference in .Net application memory usage using the same app against two copies of the same database. The only difference is that in scenario 1 I am using a local copy of ...
0
votes
1answer
34 views
Log4net not inserting data into table - neither shows any error
I tried using log4net for logging info into db and I stuck with it now.Not sure what I am doing wrong.Whatever message i send its not received in the database,neither shows any error
I have a C# ...
2
votes
1answer
32 views
Inserting rows to other tables while importing in SSIS
I have a transactions table in a flat file like
ItemID ,ItemName ,CustomerID ,CustomerName ,Qty ,Price ,TotalValue
and target transaction table will have
ItemID,CustomerID,Qty,Price,TotalValue
...
0
votes
3answers
38 views
time comparison between night time and morning time
I have one table that contains two column those contains a interger value
1- StartTime as int
2-EndTime as int
Now i have to compare hour value from current time with these times.
I am Executing ...
-2
votes
1answer
27 views
Error when deploying website on server on SQL Server
code:
create table aboutus_table
(
id int primary key identity(1,1),
content char(7500),
);
GO
create procedure admin_aboutus_save
(@aboutus_content char(7500))
as begin
insert into ...
-2
votes
1answer
31 views
Code runs fine in SQL Server, but fails at the time of deploying
Please tell me as soon as possible?
create table aboutus_table
(
id int primary key identity(1,1),
content char(7500),
)
select * from aboutus_table
create procedure admin_aboutus_save
...
0
votes
1answer
40 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 ...
1
vote
2answers
40 views
200 column table - 3 million rows - performance
i'm currently working on a project where the client has handed me a database that includes a table with over 200 columns and 3 million rows of data lol. This is definitely poorly designed and ...
2
votes
3answers
47 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 ...
0
votes
3answers
31 views
Wrong output when using Left Outer Join
This is my Script
SELECT a.PLUCODE as [Code],a.ITEMNAME as [Item],
sum(a.janQTY) AS [2012 QTY] ,sum(a.janAmt) AS [2012 AMT],
sum(b.janQTY) AS [2013 QTY] ,sum(b.janAmt) AS [ ]
FROM ...
0
votes
0answers
24 views
Execution of DLL code from SQL server
I am trying to create an online MVC 4 web appointment reminder system and I would like some pointers into the direction I should take. At the moment, I am cracking my head trying to figure out the ...
0
votes
0answers
24 views
In SQL Server 2000 or greater is their a system primary key associated with each row [migrated]
Does a system primary key or unique identifier for each row in a table exist? Like @@ROWID, @@IDENTIFER, or some other identifier that uniquely identifies each row regardless of how it was created. ...
1
vote
2answers
58 views
Is it possible to run 2 separate INSERT statements in one?
First, I am a security guy, not a developer. If there is an easier way to do what I am trying to do, I wouldn't be surprised. This is my first time doing anything in C# so be gentle.
I am working ...
1
vote
1answer
23 views
Trigger - Insert into audit, prevent update on live table
First post here.
I want to create a trigger so that when someone tries to update the table it prevents the update and logs the attempt in an audit table.
USE [AdventureWorks2008R2]
GO
SET ...




