Use this tag for questions specific to the 2008 version of Microsoft's SQL Server.
1
vote
0answers
28 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 ...
0
votes
0answers
14 views
PreparedStatement in Java on a Fulltext MSSQL Table only takes 3 Arguments
Strange behavior.
We have the MSSQL server 2008 R2.
Our Java Servlet is calling a PreparedStatement with the following join.
... inner join Containstable (fulltextTable, mycolumn, ?) as KeyTable on ...
-4
votes
3answers
24 views
Transfer Data from one table to another
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 ...
3
votes
3answers
31 views
Sql Server 2008 Row to Column
I have two tables, tempUsers and tempItems. These two tables have a one to many relationship.
When I use an inner join on these two tables the result looks like this:
**user | Category**
Jack | ...
0
votes
0answers
12 views
Troubleshooting MS SQL server instance that won't start
I've had a problem with one instance of an MS SQL 2008 (the free version) not starting automatically. I always have to right click on the icon in the task bar and start it manually. It is set to ...
2
votes
1answer
27 views
variable stuck in SSIS package
I am writing my first SSIS package to translate data from an SQL View to a flat text file.
The flat text filename needs to be in the date format "[year][month][day][hour][minute][second][ms].txt".
I ...
0
votes
1answer
11 views
which one have better performance: tab expression, temp table?
if a query need a temp result,there are 3 options in SQL Server 2008:
Use it in query as dynamic result, like
Select * from tab1 a join (select * from tab2) b on a.ID = b.ID
Use temp table:
select ...
0
votes
1answer
18 views
How do I troubleshoot a query that executes indefinitely?
When I run a Select * query against on my SqlServer table that contains 11801 records, it return 11,292 records and then the query continues to execute for half an hour was the longest I let it run ...
0
votes
3answers
16 views
MS SQL double group by
I have a table 'Hobbys' with two columns. It looks like this:
NAME | HOBBY
Alice | sport
Bob | painting
... | ...
Yves | programming
Zooey | theatre
Rows could be duplicated. For ...
3
votes
7answers
53 views
How to Delete in MS SQL WHERE IN (SELECT Multiple Columns)
i have a table lets call it "Cluster" which is related an second table Element
Cluster:
Id Group Ele1 Ele2 Ele3
1 1 1 2 3
2 1 4 NULL 9
3 2 5 8 7
Element
Id ...
0
votes
4answers
40 views
Inserting not null column with default value
I have a database that is used for development and testing purpose on a web server. What I would like to do is add one column to the table that contains approximately 50,000 records (please note that ...
0
votes
0answers
24 views
Sort data from Microsoft SQL via powershell
I have the following script that allows me to get MAC Addresses from MS SQL Db.
Function Get-MAC ($Server)
{
$SQLServer = "TVEAPP02" #use Server\Instance for named SQL instances!
$SQLDBName ...
0
votes
0answers
6 views
Change connection string on Compact edition
How i should change this connection string that my database server will change on compact?
Data ...
0
votes
1answer
12 views
Modify the CSV file to add addtional comma using script task in SSIS
I have a CSV file in the following format
"Sometext","Sometext","Sometext","Sometext","Sometext","Sometext","Sometext",
...
0
votes
3answers
33 views
Sql Server where clause between two dates not gives expected output
This is my simple query to fetch dates using 'between' operator.
create table dummy (mydate datetime);
insert into dummy values('2013-03-20 10:30:00.000');
insert into dummy values('2013-03-21 ...
0
votes
3answers
46 views
SQL Query needs to match similar records
I have a very large table of contacts which I am building an interface to help my client to de-dupe. Here is an example of the table content
id | firstname | lastname | email | address1 | ...
-1
votes
2answers
26 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 ...
1
vote
1answer
23 views
Not getting SQL connection in IIS
I have developed my application in MVC4 and runs fine. but in server when i hosted, it fails. I moved my code to server there i added the edmx file and sql connection and am able to run it from VS. I ...
3
votes
5answers
40 views
ORDER BY works only with column alias
So, I have this query
SELECT
NOTES,
DATECREATED,
DATEMODIFIED,
*
FROM myTable
WHERE
USERCREATEDBY = 465
AND NOTES LIKE ' :%'
ORDER BY DATECREATED
and it throws this error ...
1
vote
3answers
34 views
Incorrect syntax near the keyword 'PROCEDURE'
Execute following statement in the SQL Server
IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[SP_CandidateRegistration]') AND type in (N'P', N'PC'))
BEGIN
CREATE ...
2
votes
3answers
47 views
How to calculate average of a column and then include it in a select query in SQL
I have a query where the result like the following
saledate Amount TRVal
20/05/2013 $6250.78 4
21/05/2013 $4562.23 4
22/05/2013 $565.32 6
23/05/2013 $85.36 8
24/05/2013 $56.36 5
...
0
votes
0answers
23 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
2answers
25 views
Rounding up/down to the nearest 5 minutes where hh:mm:ss value is in varchar form
I have a database which one column has a hr:min:sec value like "14:04:33" as varchar (50). I want to round up/down to the nearest 5 min: 14:05:00 and 14:00:00 respectively and both of them needs to be ...
0
votes
2answers
23 views
How to create daily backup with unique name in sql server
I want to make full database backup of my server's all databases with unique name daily. For that I have an idea to keep timestamp which will make database copy separate.
Suppose there is a database ...
1
vote
4answers
42 views
How to get SQL Server process ID with C#
On my Windows Server 2008 I have local instance of SQL Server 2008 (or later 2012.) The server also has IIS configured to run ASP.NET web applications that connect to that SQL server to do basic ...
0
votes
1answer
35 views
how to sum column i in temp table
SELECT @cinema_count = COUNT(c.[key]) FROM cinemas c
SET @count = 0
WHILE @count < @cinema_count
BEGIN
SET @count = @count+1
SET @buffer = 'ALTER TABLE #temptable ADD ...
2
votes
4answers
43 views
SQL Query for retrieving data by combining two queries
I am writing two queries in my sql procedure to retrieve data based on the parameter provided from the user in my asp.net application.
IF @Action = 'ID'
SELECT ...
0
votes
0answers
19 views
Query without having to specify table's schema [migrated]
I imported a bunch of tables from SQL Server 2000 to my 2008 database. All the imported tables are prefixed with my username eg: erpadmin.tablename.
In the table properties it lists 'erpadmin' as the ...
2
votes
2answers
42 views
How to deal with sql concurrency issues in a website
I am making a website using asp.net mvc. I have a table that looks like this
Create Table Items(
[Id] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY,
[Colname] [nvarchar](20) NOT NULL
//OTHER ...
-1
votes
0answers
14 views
sql snapshot restore causes transport level error [closed]
When I restore my database snapshot, and then I try to navigate to my web page I'm getting a Transport level error. I just have to refresh to page after that.
Is there a way to avoid that error?
...
0
votes
1answer
40 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 ...
0
votes
2answers
40 views
Trying to lock database but not working
I have a table that looks like this
Create Table Items(
[Id] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY,
[UniqueCol] [nvarchar](20) NOT NULL,
[Col] int NOT NULL
)
ALTER TABLE Items ADD ...
-3
votes
0answers
15 views
Advice or a Book Suggestion on Accessing Different SQL Servers [closed]
I starting writing a number of applications and getting up to speed using VS 2012 and C# accessing a number of databases that are exactly the same. We let people into buildings. I can easily build the ...
-4
votes
2answers
105 views
Order of join operations: would these two FROM clauses produce the same results? [closed]
Would these two FROM clauses produce the same results? And if not, is there a way to write the the first one so that no parenthesis are needed?
FROM SALESTAX
RIGHT JOIN ( ...
0
votes
0answers
7 views
Created Own Login Page to Display Username But Gets Wrong Data
I've created a login page without using the LoginName Control, which is probably a mistake. The login page works as it redirects the user to mysupport.aspx page. But once the person is logged in, ...
-3
votes
4answers
68 views
How can I insert each line from txt file into separate rows in a SQL Server database?
I have a text file which has words from dictionary like..
ABACA
ABACHI
ABACHISTA
ABACO
ABADESSA
ABADIA
ABALIETA
ABARICA
Now what I want to do is insert this list from a text file into a SQL Server ...
1
vote
3answers
38 views
What kind of indexes will help me in this MERGE query?
I have a table like this:
Name | TimeA | TimeB | ValueA | ValueB
And, I am performing some MERGE operations as follows:
CREATE TABLE #TEMP1...
INSERT INTO #TEMP1
SELECT Name, Value
FROM ...
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
0answers
34 views
How to update windows and web database simultaneously? [closed]
I have two application one is web and another is window with two database, one is located in PC and another one is in web server, when i update in windows application it will automatically get update ...
0
votes
2answers
44 views
How to do this SQL in LINQ?
I would like to know how i could do the following using LINQ (C#). All help would be much appreciated, thanks.
DECLARE @productId int
INSERT INTO product(title, studioId, developerId, publisherId, ...
1
vote
0answers
29 views
How do I get SSMS intellisense to keep my temp tables when I change DBs?
When I select into a temp table, after changing databases intellisense no longer recognizes my temp table.
The interesting thing is if I create the table via a create table query the temp tables ...
0
votes
0answers
23 views
Tool/method to convert a varbinary to an image file
I have a table in a SQL Server 2008 with images (JPG) stored in a varbinary column. I was wondering if there's a really simple way of converting a varbinary back to a image file.
For example - I'm ...
-2
votes
0answers
31 views
Calling a stored procedure in C# [duplicate]
I have the following stored procedure that I need to call when a button is pushed, what is the best way to call it in my C# code? Create a class or create a connection directly in C#. I have a ...
2
votes
3answers
62 views
Read SQL Database in batches
I am using Java to read from a SQL RDBMS and return the results to the user. The problem is that the database table has 155 Million rows, which make the wait time really long.
I wanted to know if it ...
1
vote
0answers
41 views
SQL Server Periodic Fixed Delays
We are connecting to an SQL Server 2008 on another box using PHP 5.3 and pdo_dblib.
Periodically (10+ times a day randomly throughout the day) we experience 3 minute periods where all SQL Select ...
0
votes
3answers
59 views
inner join results of “with” clause
I have 2 with clauses like this:
WITH T
AS (SELECT tfsp.SubmissionID,
tfsp.Amount,
tfsp.campaignID,
cc.Name
FROM ...
0
votes
1answer
59 views
Improve Performance when returning data from SQL Server
I have a stored procedure that produces 2,675 records in about 10 seconds in SQL Server Management Studio.
However, when I call it from my C# application, it takes 1:05 to fill the DataTable. Is ...
-2
votes
0answers
39 views
Want one column name as header and data from other table in SQL Server 2008
Actually I am writing a stored procedure and I tried it but facing some issues.
I have two tables, table 1 and 2
I am crating SP which can create view
I want one column of my table 1 as a header ...
0
votes
2answers
28 views
PHP script only returns first row of SELECT statement
I have a php script to run mssql queries. When I run a query like, "SELECT first_name, last_name, mi FROM users", all I get back is 'first_name'. Here's the script:
<?php
require ...
0
votes
0answers
11 views
sql database tuning and optimisation using Recommendation Provided by “Database Engine Tuning Advisory” [migrated]
Our Database has increased very big (SQL 2008 R2), we are trying to optimize performance of DB.
Can we Follow Recommendations provided by "Database Engine Tuning Advisory" by giving .trc file ...





