For questions specific to the 2005 version of Microsoft's SQL Server.

learn more… | top users | synonyms (5)

0
votes
0answers
3 views

All users missing after a detach/reattach

After detaching and reattaching a database to do a copy operation, all of the user objects are now missing from the database (I should add that the copy failed; according to the logs, there was an ...
0
votes
1answer
7 views

datetime manipulation: replace all dates with 00:00 time with 24:00 the previous day

I have a table described here: http://sqlfiddle.com/#!3/f8852/3 The date_time field for when the time is 00:00 is wrong. For example: 5/24/2013 00:00 This should really be: 5/23/2013 24:00 So ...
0
votes
2answers
23 views

Sql Between Dynamic

I'm trying to do a sql query to get data in a clause in between. The problems, is that i dont know how to do a query who can have differences clause between depends on the value in the parameter. ...
1
vote
1answer
11 views

Installing MS SQL 2005 drivers for IIS 7.5 .NET apps

I don't normally do .NET development but I have a small .NET app that I need to set up on a new Win2K8 IIS 7.5 server, the SQL 2005 server is on a different box. I've tested the .NET app on an Win7 ...
0
votes
0answers
8 views

Migration issue Entity Framework 4.0 to Entity Framework 5.0

Our web application is a EF4.0 database-first application, which uses custom-code generator to generate service classes, data access classes and uses ObjectDataContext as a base class for data access. ...
-1
votes
0answers
9 views

Unable to restart SQL Server. SQL Server Configuration Manager showing “Change pending…” [closed]

While attempting to detach an old database, SQL Server 2005 became unresponsive. I opened SQL Server Configuration Manager and the state of SQL Server (SQLEXPRESS) is "Change pending..." This has been ...
0
votes
2answers
24 views

convert date to spanish in sql

I am running a report with multiple fields in english. I have 2 date fields at the end of the report, one has to be in English and the other in Spanish. The format the date needs to be in is ie ...
2
votes
2answers
33 views

Cast to datetime - DateTime column with date and nvarchar column with time

I have a column Date wich is Datetime type. And i have an nvarchar column with the time inside. For example: Date(datetime) Time(nvarchar) ----------- ...
0
votes
3answers
24 views

Protege Owl API DB to OWL

I need to create OWL class from the first table name if cardinality 1:1 and OWL class from the second table name. If cardinality 1:* and one of tables describes object properties, create OWL object ...
2
votes
2answers
56 views

Solution for N:N relationship without permission to create auxiliary table [closed]

i was interviewed with a question, and i am not sure, if the interviewer was trying to confuse me or he was serious. Question was something, that we have a Student table: Student ID, Name and a ...
2
votes
1answer
41 views

How to select shipments that have one activity but doesn't have another one

Simplified version of a table Table ActivityHistory: ActivityHistoryid(PK) | ShipmentID | ActivityCode | Datetime 1 | 1 | CodeA | 2 | ...
0
votes
1answer
43 views

Incorrect syntax near the keyword 'DEFAULT' - Unable to modify table

I have created a table from this script. The databases are partitioned. print 'Create Table - tenant_Import' go create table tenant_Import ( Import_Data_Id bigint not null ...
0
votes
1answer
19 views

How to upgrade SQL Server 2005 Express instance to SQL Server 2008 R2 Express through command line arguments

I am using this command to upgrade to SQL Server 2008 R2 SQLEXPR_x64_ENU.exe /q /ACTION=upgrade /INSTANCENAME=MyInstanceName /IACCEPTSQLSERVERLICENSETERMS=1 but I am getting this error: ...
0
votes
2answers
13 views

output parameter in stored procedure not working

I am new with stored procedures. I have simple stored procedure for addition of two numbers as follows: alter proc simpleProc ( @Tax int , @TotalAmount int, @sum int output ) as ...
0
votes
3answers
27 views

Retrieve different values in order if empty

I have a table with different type of measures, using a id_measure_type for identifiying them. I need to do a SELECT in which I retrieve measures all summed for that period and each unit (id_unit) ...
1
vote
1answer
23 views

Handle more than one returning value in stored procedure

I have following stored procedure ALTER PROC spInParam ( @partyCode NVARCHAR(50) ) AS BEGIN DECLARE @totalAmount float DECLARE @setLoop int DECLARE @setCNT int print 'Party Code '+@partyCode; set ...
-3
votes
1answer
24 views

locked table by stored procedures in sql [duplicate]

I have table name called cusdec_boi this table publish as a transaction replication,and client update this table always,problem is some times Lock the table. I Have stored procedure name called ...
7
votes
3answers
35 views

How to update the field value of specific's column in SQL Server using Query in one shot?

I have Imported Data Form XLS in Open Source eCommerce Platform @AspxCommerce - Downloded Form Here but finally realize that it has wrong data without any Extension at the end of the data, in One of ...
-1
votes
0answers
11 views

Can I install SQL Server 2005 Enterprise on Windows Server 2008 R2 Web Edition? [closed]

So, as the title says .. Will it be possible to install SQL Server 2005 Enterprise on Windows Server 2008 R2 Web edition or just R2 ? Kind Regards.
-2
votes
2answers
24 views

SQL Error mesage relating to length of identifier [closed]

I get the following error, but not quite sure what it means: Error message: System.Data.SqlClient.SqlException: The identifier that starts with '[DEFAULT], 1 AS rowJoiner FROM ...
0
votes
0answers
34 views

SQL Server 2005: Arithmetic overflow error converting int to data type numeric

I have to filter a column called [Order] (data type = decimal(3,1)) in my final view for 1.0. List of unique values for [Order] are: 1.0 2.0 3.0 4.0 5.0 7.0 8.0 9.0 11.0 12.0 13.0 My SQL ...
0
votes
0answers
18 views

Web-App using Hibernate that queries a SQL Server 2005 encrypted column

we are devolping a web-application using Spring 3.1.2 and Hibernate 4.1.7 with a database SQL Server 2005. On a table we've got a column encrypted and we need to perform some queries like, for ...
0
votes
0answers
6 views

BCP Utility to output contents into CS

I have a stored procedure that gets a SQL query, file path (to output) and file name as parameter which I'm using to build a bcp command and finally executing the same e.g SET @sql = 'bcp "' + ...
0
votes
2answers
35 views

Tips on generating dynamic form fields from a string of data?

So here's what I want to do. I want to take a list of phrases, and in certain parts of the phrases, indicate that user input is required.. be it a dropdown list, a textbox, a date field, etc. Kind ...
0
votes
2answers
47 views

SQL Select, selecting a row off of a column condition

Division Department Dept. Head 1 1 Mr. Anon 2 1 NULL 3 1 NULL 1 2 NULL 2 ...
1
vote
0answers
19 views

Flush print statements to client (SQL Server Management Studio)

Please see the code below: USE [Test] GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[Test] AS BEGIN begin tran begin try SET NOCOUNT ON; DECLARE @ID int ...
0
votes
0answers
14 views

File name generated by query used in attachment

I have this query that runs in SQL Server Agent and I need to be able to pick up the correct file. Currently I have it picking up a random file that is on the D drive but I need it to pick up the file ...
0
votes
1answer
6 views

Attach text file created by SQL Server Agent to email

Hello I am trying to figure out how to set up an SQL Server Agent Process that will pick up a file that was created by the step and send an email with the attachment. The first step is below. Would ...
1
vote
1answer
41 views

Want to read file retrieved from database in the same format it was being saved in C# windowsForm

I am using C# Windows Form application to insert a document file (word, pdf & text) in to SQL server database,The below code I used to convert the file into binary and after ward I upload this ...
0
votes
2answers
41 views

SQL Query to find the last day of the month

I need to find the last day of a month in the following format: "2013-05-31 00:00:00:000" Anybody please help out.
1
vote
1answer
24 views

insert multiple rows in single SQL

I am trying to insert multiple rows with SQL statement. For that i refered this question. According to top scored answer in this qestion, i made following query: INSERT INTO login ...
-2
votes
0answers
20 views

Function Failed to Load images and throws SqlException

I had a list of quotations and answers both contains images; this function works properly but recently it started throwing an exception : A network-related or instance-specific error occurred ...
0
votes
1answer
17 views

Error php odbc conect to store procedure in sqlserver 2005

I tried 5 days ago about php odbc connection to store procedure in sqlsrever2005, but it not successful. i had problem in odbc_exec point. I dont know why ? My coding as the following: $connection= ...
0
votes
2answers
88 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 ...
0
votes
1answer
41 views

How to combine this query

In the query cr is customers, chh? ise customer_pays, cari_kod is customer code, cari_unvan1 is customer name cha_tarihi is date of pay, cha_meblag is pay amount The purpose of query, the get the ...
0
votes
1answer
39 views

Convert Sql query into vb script

I have the below SQL query. I wanted to execute the same query in vbscript, but am not able convert it and not getting proper result. Can I get the correct convert format? SELECT distinct CASE WHEN ...
0
votes
1answer
25 views

SQL Server 2005 Connection with ASP classic

I want to connect main page with user login in ASP. I use MS SQL 2005 and I wrote below codes but I didnt get any result. Could anyone help me about connectionstrings? Dim MyLogin Set MyLogin = ...
0
votes
2answers
39 views

sql server If statement and output count hits

This is the scenario If Hit > 0 SQL server should return false and update a table. I have problems with the syntax. Create PROCEDURE [dbo].[sp_CheckTransactionExist_TransID] @TransID int AS ...
1
vote
3answers
28 views

Can a single statement be surrounded by SET NOCOUNT in SQL Server 2005?

I have a sproc that has a couple inserts and updates. Only the amount of a specific update needs to be returned. I have tried returning or selecting @@ROWCOUNT but because of other selects in the ...
0
votes
2answers
42 views

Update a single table based on data from multiple tables SQL Server 2005,2008

I need to update table one using data from table two. Table one and two are not related by any common column(s). Table three is related to table two. Ex : table one(reg_det table) reg_det_id | ...
0
votes
1answer
47 views

Connecting vb.net SQL Server dataset

I created a program using VB.net 2008 and SQL Server 2005. And I am using dataset to connect to SQL Server and Crystal Reports getting data from connection to database too. But I find it difficult ...
2
votes
1answer
48 views

SQL Server : manipulating complex xml into tables

I have some xml which I need to insert into two database tables. The second table (TblSales) must contain the PK of the first (TblDetails.Id). I can insert the data into these tables using XQuery, ...
1
vote
1answer
40 views

Issue with setting default value for a column (sql server 2005)

The following syntax won't work: ALTER TABLE MyCustomers ALTER COLUMN CompanyName SET DEFAULT 'A. Datum Corporation' per url, http://msdn.microsoft.com/en-us/library/ms174123.aspx Error message: ...
-4
votes
0answers
27 views

Want Paging in this stored procedure [closed]

set ANSI_NULLS ON set QUOTED_IDENTIFIER ON go ALTER Procedure [dbo].[Back_Up_Stp_UserWiseSummaryReport] --1,1,'04/01/2013' , '05/15/2013' ( @Dep_Id int, @fbd_UserId int, ...
0
votes
3answers
20 views

sql function not retrieving table and giving error

I have written following function in SQLServer 2005 Following is the function: create function fnBillParticulars() return table as return (select * from billParticulars where Id='2425') go Its ...
0
votes
3answers
17 views

cannot connect php odbc to sqlserver 2005

I would like connect from PHP to SQLServer 2005 by ODBC, but i was not ok. I have created DNS in control panel already. Please tell me the solution, why cannot connect ? I have connected from php ...
0
votes
1answer
20 views

group on 1 column and merge rows

I've got SQL table which looks like this Name | Field     | Value | John  | Country | USA | John  | City       | New ...
0
votes
2answers
23 views

stored procedure declaration error

I am new with stored procedure. I am taking value of column in one variable and checking it with If block. My code for this is as follows: create proc billRet as BEGIN DECLARE @amt float set ...
0
votes
1answer
30 views

Sql Exception 0X80131904 Login failed for user ". The user is not associated with a trusted sql server connection

I'm developing a windows application using c# .Net Framework 4. I have 2 machines; Test and production, connecting to a remote server which has the SQL Server here's my connection string: <add ...
-2
votes
0answers
35 views

How to save XML in SQL Server 2005 table column using Entity Framework 4.1 [closed]

I have do do these 2 things I have an object I converted that to XML now I want to save that XML into a SQL Server 2005 column of type XML then I want to retrieve that XML and convert it back to an ...

1 2 3 4 5 310