SQL Server is a relational database management system from Microsoft. Use this tag for all SQL Server editions including Compact, Express, Azure, FastTrack and PDW.

learn more… | top users | synonyms (6)

1
vote
1answer
39 views

Join with table in another database

I need to join with table in another database but do not know its name, I only get it from procedure parameter. So I want to do something like this: select * from [DB1].dbo.[Table1] t1 inner join ...
0
votes
1answer
23 views

Using a scalar as a condition in an OLE DB data flow

I am having a problem with a data flow task in an ssis package i am trying to build. The objective of the package is to update tables situated in our local server using a connection to a distant ...
0
votes
2answers
27 views

Get delimited data from table in SQL Server

I have a table named TBL_SUBACC and fields are: Account, Branch, Ftype, ArmCode,DrlsttrDate, CrlsttrDate, TelNo etc. Currently I am getting | separated data using following query: select account ...
5
votes
3answers
65 views

Why am I allowed to have two indices with the same name?

I have a large .sqlproj project. In one .sql file I have one table definition: CREATE TABLE [dbo].[TableOne] ( [ColumnName] UNIQUEIDENTIFIER NULL ); GO CREATE UNIQUE CLUSTERED INDEX ...
0
votes
0answers
16 views

How to insert XML attribute matching values in SQL table using SSIS.

I have XML where I wanted data of some matched attribute which I wanted to dump into my SQL backup table E.g. : S Node where N="AccountName"; //So value should be "abc" and N="Fcode";// value should ...
0
votes
2answers
35 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.
0
votes
0answers
19 views

How to connect input type file to memorystream so i can upload it to the database

Im trying to upload a file to the sql server database, but the problem is that var filebyte is null even if i have chosen an image. so my question is how can i connect the input type="file" or ...
0
votes
0answers
39 views

MSSQL - Users/Logins from another database [migrated]

Is it possible to use logins/users from one database(F) in another(S) one? I know I can copy it but, when I add user to (F) database I have to copy again them all (or add the same user to (S) ...
0
votes
0answers
37 views

How can I modify my string comparison algorithm to reduce the 'significance' of digits?

I have a SQL CLR table valued function which accepts two string parameters for the purpose of comparing company names and returning a match score outcome. This is the c# function that I'm using to ...
0
votes
1answer
33 views

How to get the difference between two datetimes in hours and minutes

If I have two datetimes like this : transtime_in, transtime_out How to get the difference between those datetimes in the following format : hh:mm I use DATEDIFF(hour, transtime_in, ...
0
votes
2answers
47 views

How to use Convert function in SQL Server?

Sl,No Name BirthDay 1 Jojin1 2013-05-12 00:00:00.000 2 jojin2 2012-06-12 00:00:00.000 3 jojin3 2015-04-12 00:00:00.000 I have table called Datefunction. In that ...
1
vote
0answers
19 views

SQL server Data Tools- can not browse the deployed cube

I'm trying to browse the deployed cube, but it doesn't work. I have this error: "Element "return" was not found. Line 5, position 2". I've made the connection with database and it worked (I saw that ...
2
votes
1answer
40 views

Handle stored procedure output

I have this procedure: ALTER PROCEDURE [xyz].[stored_proc] @input1 as int, @input2 as nvarchar(255) AS BEGIN SET NOCOUNT ON; UPDATE ... SET input1=@input1 WHERE ...
0
votes
1answer
20 views

SQL Server create assembly which references another assemblies

I have .NET class library which uses Quartz.dll When i register assembly in sql its says that Quartz.dll requeres system.web, system.drawing, System.DirectoryServices.Protocols... It is not ...
0
votes
1answer
33 views

Fastest Data Transferring Over A Linked Server

When it comes to transferring data between linked servers, there have been several method I have used in my work to date. I'm wondering if there is an accepted fastest/most efficient way that a task ...
1
vote
2answers
36 views

How to make a validation of textbox in asp mvc and entity framework

I am developing an ASP .Net MVC 3 application using C# and SQL Server 2005. I am using also Entity Framework and Code First Method. I have some textbox which I want that they accept only NUMBERS ...
1
vote
0answers
44 views

Alternative queries for mysql and SQL Server?

I stated a project in php with SQL Server, and I have some doubts on queries. what are all the things which will change from MySQL to SQL Server, for example Limit,group by,order and what are all ...
1
vote
1answer
35 views

Mapping MVC3 model to MSSQL 2008 View using code first and database first

In SQL Server 2008 I have a view like this: CREATE VIEW products AS SELECT a.ID, a.Name, b.ID as SubID, b.Name as SubName FROM main_product as a INNER JOIN sub_product as b on a.ID = ...
0
votes
0answers
12 views

Loading data from SQL Server to pentaho BI Reports

I have encountered an issue in Pentaho-bi-ce, I have created a report in designer and published the report successfully on BI server v3.9.0 community edition. while on report designer I see the ...
0
votes
1answer
58 views

find name of least experienced employee

Hello friends I am stuck in writing one query. Can you please help me out? I have one table called prog and having column doj. Here in name column I have name of all employee and in doj column I have ...
1
vote
2answers
48 views

Three-tier architecture implementation in Windows form application

I am trying to insert data into a database using a three-tier architecture, but I am stuck and I cannot proceed further. This is my code First is UI part: public void assignField() { ...
0
votes
0answers
26 views

Deploying SQL server with VS 2012 application

I'm working on a winform application using VS2012 (.NET 4). I use SQL Server for my database affairs, I can run this application smoothly on my development systems (which have VS 2012 installed) but ...
0
votes
1answer
23 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 ...
0
votes
4answers
78 views

How to return the value of Identity element

I have a table in SQL Server with 3 columns Id (int identity), email (nvarchar(50)), password (nvarchar(50)). Now I want to write a query where I can insert email and password and that time, I want to ...
-1
votes
0answers
38 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
2answers
33 views

Update x columns from many rows in a different table

I have a table of products which looks like this: Products (companyID int, product1 int, product2 int ... product8 int) and a table of product details like so: ProductDetails (companyID int ...
-2
votes
0answers
21 views

Where can I get SQL Server Web Admin? [closed]

My hosting utilizes a program called "SQL Server Web Admin" for database management. I want to duplicate the environment on my home computer, but I can't find the program. Here is a picture of it: ...
-1
votes
2answers
58 views

Cannot set the Order By to my SQL Statement, need a workaround

I understand that I cannot have the SQL order by PaymentDate but my results come out not in Payment Date Order. Is there an easy way I can make sure the PERIOD column is in actual date order? The SQL ...
0
votes
0answers
47 views

Functional difference between alias = expression and expression as alias [closed]

Recently while reading a post on Derek Dieter's SQL Blog I noticed that the way he wrote his SELECT statements was completely reversed to my own (at least in this post). The sample below shows how he ...
0
votes
0answers
59 views

select into or insert into for stored procedure

I have a stored proc that does a transfer and manipulation from one database to another. There are eight tables in all that are created. My method is basically BEGIN IF table exists. BEGIN Drop ...
0
votes
0answers
35 views

Select Query Cause DeadLock

We keep getting deadlock errors in our production environment. The error message as below in the log file 2013-04-24 01:44:28,893 ERROR [gk.lvl1Executor-1] - Transaction (Process ID 68) was ...
0
votes
1answer
25 views

How do I get sqldatareader to show the data in the fields?

I have an sql server table located on my website (remote). The table is called table1 and contains a bunch of fields. My goal here is to read all the fields of table1 into an array to iterate. Here ...
1
vote
4answers
47 views

database - date - multiple columns or one?

I'm working on a database, and can see that the table was set up with multiple columns (day,month,year) as opposed to one date column. I'm thinking I should convert that to one, but wanted to check ...
0
votes
2answers
81 views

My Checkboxlist does not show multiple data from database?

i am trying to bind my Checkboxlist programatically based on two input variables ; but i get only one checkbox instead of 3 . Here are my codes This is my Business Layer public class ...
0
votes
1answer
18 views

Database running out of space [closed]

My database has 16MB of space left I used to just truncate as I was taught but I found these links that advise against truncating ...
2
votes
2answers
47 views

Hard trigger/constraints making

I'm new to database and I have a question about a table with triggers or maybe a check constraint. I'm using SQL Server Mangagement studio. I have the following table: create table item( ...
-5
votes
0answers
26 views

SQL - Saving A Collection [closed]

If I have a table called tbl_User in MS SQL (SQL Server) and I wish to save a collection of objects, say, List<Car> for example, how would I go about doing that? I have a table called tbl_Car ...
0
votes
0answers
9 views

how do you create a composite foreign key when key being referenced is also a foreign key [migrated]

if you have table a (column x) which is 1 to many with table b (column x, column y) which is 1 to many with table c (column y, column z), its pretty straight forward to define the foreign keys. if ...
-2
votes
0answers
12 views

Understanding the costs and constraints of the AWS Free Usage Tier [closed]

I am new to the cloud and trying to understand the particulars of the AWS Free Tier - Windows Instance(s). Our application’s main requirement is maximum availability. I have read much about AWS and ...
1
vote
3answers
48 views

SQL Server: How I create a horizontal table

For example if I have the next table: | sensorid |date| value | ------------------------- | 65000 | 00 | 32 | | 65000 | 01 | 40 | | 65000 | 02 | 35 | | 65000 | 03 | 37 | | ...
0
votes
0answers
20 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 ...
4
votes
2answers
37 views

Is there a way to alter the design without creating table from scratch? [duplicate]

I'm creating a database in SQL Server Management Studio which contains some tables plus stored procedures, now I have set all relationship between all tables but I want to alter something in 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 ...
0
votes
1answer
16 views

Using SQL Server stored procedures with empty resultsets in PHP 5.4

I use PHP 5.4 with Microsofts 3.0 drivers to execute stored procedures in SQL server 2008. It works fine until I execute a procedure that isn't returning any result as it is just doing an update. The ...
1
vote
2answers
48 views

TSQL - select inserted rows

Is there a way to select inserted row? I am trying to run the following query using SqlCommand (it is used to reserve given id in the database): INSERT INTO tbl (id) SELECT COUNT(*) + 1 AS id from ...
0
votes
0answers
14 views

PHP MSSql Retruning Limited Rows

I am using a Linux pc where i was working with MySql. Recently i am working with a Windows sql server 2000 sp4 from my linux pc using php mssql remote connection. At first i started with a query : ...
-3
votes
0answers
19 views

can't make a connection between eclipse and sql server 2008 r2 [closed]

package amino.system; import java.sql.*; public class jdbctest { public static void main(String[] args) { // TODO Auto-generated method stub Connection conn =null; try{ ...
0
votes
3answers
74 views

SQL query to find the highest paid salary for each lanauges

As I am not expert in writing the SQL queries so want for help. I have a table called programmer whose structure & data look like: PNAME,PROF1,PROF2,SALARY In prof1 data are: ...
1
vote
1answer
34 views

Lost my column headings SQL

I had the following dummy code (you can use this to test): USE tempdb; GO CREATE TABLE dbo.Products ( ProductID VARCHAR (50), Period VARCHAR (6), Value DECIMAL (15, 2) ); INSERT ...
-1
votes
0answers
16 views

SQL Server in Visual Studio and Management Studio [closed]

I am a newbie... so I need to understand this: I installed Visual Studio 2010, and later I installed free SQL Server Management Studio. I tried some tutorials in Visual Studio 2010 .. and in ...

1 2 3 4 5 1348