3
votes
3answers
47 views

Efficient Update of Table from One SQL Server to Another, Same Table Structure

I have one database server, acting as the main SQL Server, containing a Table to hold all data. Other database servers come in and out (different instances of SQL Server). When they come online, ...
-4
votes
0answers
22 views

Oracle certification vs SQL Server [closed]

Having an MCSA: Sql Server 2012 or an Oracle 11g: OCA (developer not DBA), which one is more marketable? Is there more opportunities in SQL server than Oracle in United states? Thanks for your ...
0
votes
2answers
20 views

SQL Server table or flat text file for infrequently changed data

I'm building a .net web app that will involve validating an email input field against a list of acceptable email addresses. There could be up to 10,000 acceptable values and they will not change very ...
-7
votes
2answers
96 views

Why values from C# getting stored twice in the sql server database?

This problem occurs when I run my aplication. Express profiler shows that connection to database occurs twice, so problem is in the code! Code Sample Where I define what to send is here. ...
2
votes
0answers
29 views

which non-clustered index should i have to use composite or single column in sql server? [migrated]

i have following columns in my database table(Medicines). ID bigint, MedicineName nvarchar(50), BrandName nvarchar(50), MedicineCode nvarchar(20), and price,quantity. i am ...
0
votes
2answers
42 views

Vertical Join in an SQL Statement

I've got the following SQL Statement: select * from Leaves inner join LeaveDetails on Leaves.LeaveId= LeaveDetails.LeaveId inner join Employee on Leaves.EmployeeCode = Employee.EmployeeCode inner ...
0
votes
4answers
76 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 ...
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 ...
1
vote
1answer
25 views

SQL Server Management Studio - Create database with files at specific location

Using SQL Server Management Studio (SQL Server 2008 R2 Express), how do I create a database with files at an arbitrary location, say "K:\SQL_DATA"? I have been able to create it at default location, ...
-1
votes
2answers
68 views

Can't Connect to Local SQL Database

This: SqlConnection myConnection = new SqlConnection("Data Source=(LocalDB)\v11.0;AttachDbFilename='C:\\Users\\Joe\\Documents\\Visual Studio 2012\\Projects\\FileIO\\FileIO\\Database.mdf';Integrated ...
0
votes
0answers
22 views

Dynamically change the ServerDB name in SSIS connection manager

We have a few 100's of SSIS packages in our environment. Last night we moved our database from one server to another and renamed it. We now need to go into all of packages and change the connection ...
0
votes
3answers
67 views

Which way to make this object class

I am creating a Character object that has an Inventory object. In the Inventory object you got a list of InventoryItem object and in every InventoryItem object you have an Item object. Character ...
0
votes
3answers
29 views

Can't access sqlcmd using username password

I am new to SQL Server. Please help me to fix. I have created a user with password in SQL Server Management Studio (2008 R2). When I use sqlcmd with this user, sqlcmd says C:\Console2>sqlcmd -U ...
1
vote
0answers
57 views

Create a database table from a Type. In code. Simply

I've been looking to replace SqlCommand's with Entity framework or Linq-To-SQL. However, they seem to rely heavily on using the designer (which I rather minimize), and in the case of Linq-To-SQL it ...
0
votes
0answers
21 views

Autogrowth of SQL Server database and log file [migrated]

I am confused what this autogrowth property does for any database or log file in SQL Server. According to my understanding If we set autgrowth for database as restricted then its size will ...
-1
votes
0answers
26 views

I'm trying to achieve couple of things

I have an asp textbox which should validates against the database for a value, if the value is correct, then when the text box loses focus, I want a javascript to pop up and say, if the loan was valid ...
3
votes
5answers
128 views

Can't send substring to database

My goal is to send data from C# to SQL server, ut nothing happens in DB side. What can be the problem? Maybe its wrong data type in DB side? Code for getting string and sending it. Full code ...
3
votes
1answer
40 views

Optimizing database performance for java server

I have a live java server. It has a DatabaseManager class for database connection, operation and closing. But there are a lot of database activities going on (even more than 50 clients simultaneously ...
-4
votes
1answer
42 views

How to remotely access a database? [closed]

I have created a course registration web site in asp.net. I have databases etc. in my project. The project works fine in my computer, but since databases are in my local computer, i do not know how to ...
0
votes
1answer
76 views

Entering 40000 rows in sql server through loop

I have to make a database system that is purely on SQL Server. It's about a diagnostic lab. It should contain at least 40,000 distinct patient records. I have a table named "Patient" which contains an ...
2
votes
1answer
47 views

SQL how to format time containing an aggregate or a subquery

Please help. Having a little bit of a problem here and need some help figuring it out. I have a query that returns multiple rows and when I try to format the time to display as I would like I get ...
-1
votes
4answers
107 views

Insert common data from one database into another?

I have database X and database Y. X and Y have some tables and columns which are of the same schema. There is no data in database Y. What SQL/T-SQL can I write in order to transfer all data from ...
1
vote
2answers
48 views

sql server 2008 r2 top (1) to update date not working

I have table with two colums (startTime, endTime) , those are from dataTime type. when I insert a row in this table I want to update previous data in this table like this: update endTime in the row ...
0
votes
1answer
44 views

Web application that requires data from other databases

I am currently helping my company to redesign the CRM. They plan to extend the CRM to read data from another database which is used by another software. All database are using mssql technology. ...
0
votes
1answer
26 views

How to attach LDF file in SQL 2008 R2

I want to change the place of my database. but I have make one small mistake... I have attached my db but I have not select LDF file therefore SQL creates one new LDF file. Now I want to attach my ...
1
vote
2answers
59 views

How to return multiple rows in sql from same table

Pretty new here and could really use some help. I have a table with TimeID(pk), DateEntry(date), EntryTiem(time), ProjID(int), ProjName(varchar), Phone(bit), Research(bit), Notes(varchar), ...
-1
votes
0answers
27 views

Installing DB from .bat file [closed]

I was given .bat files to install database on MS SQL locally. When I run the .bat file I keep getting error. Sqlcmd: Error: Microsoft SQL Server Native Client 11.0 : Login failed for user ...
0
votes
1answer
46 views

Make sure .bak-file is ready after MS database backup

I tried to copy a .bak-file to the local machine directly after the backup on the server finished. I never had any problems with that while testing and debugging, but after deployment I got a lot of ...
2
votes
1answer
48 views

Restore MS SQL Database from path other than “c:\Program Files\Microsoft SQL\…\Backup”

I want to reduce the effort of creating a database on the local machine by restoring an empty one instead of creating it via SQL. This is my code so far (DataAccess.ApplicationDirectory is ...
-2
votes
1answer
44 views

SQL Server lost database data [closed]

I'm looking for some information that may help me figure out what has happened to our database. The hard drive that contained the database recently crashed, so we sent it to data recovery and they ...
0
votes
2answers
54 views

MySQL Workbench for MSSQL?

I generally use MySQL Wordbench for making my ER diagrams. Now, I have to make a diagram for SQL Server. Does Workbench have an SQL Server export feature? If not, are there free ER diagram software I ...
0
votes
0answers
47 views

Does an index aid in leading wildcard searches?

I have a table, users, with the following columns: ID int, pk, clustered index Address nvarchar(50), Date_Of_Birth date Name nvarchar(200) Name contains values like ...
-1
votes
3answers
57 views

Aggregate data from datatable [closed]

I have a datatable with two columns(DueDate and UntiPrice) and I want to aggregate values from UnitPrice column as per date specified in Duedate column on monthly and daily and yearly basis. Thanks ...
0
votes
2answers
53 views

Schedule Table Design

I am working on doctor scheduler page requirement. The below is the screen for showing a usual weekdays schedule for a doctor. The doctor may visit only few days on a week and only between a ...
-1
votes
0answers
51 views

No New Tables In Database After Executed Sql Query [closed]

I am using Microsoft SQL Server 2008 Management Studio. I have been trying to create a database (containing tables etc) from a query file (Delivery.sql). In the Object explorer I right-clicked ...
-2
votes
3answers
75 views

Sql Result IN a Query

dont blame for the database design.I am not its database architect. I am the one who has to use it in current situation I hope this will be understandable. I have 3 tables containing following data ...
-7
votes
0answers
38 views

Azure Trial created SQL server database [closed]

After creating db, clicked on manage icon. prompted for login credentials. supplied account credentials which were not accepted. trial version offers no support for anything.
3
votes
3answers
92 views

Using IF / ELSE to determine a SELECT INTO statement

I'm having some strange issues using IF / ELSE to determine which one or two SELECT statements to execute. The error message I'm getting when running the full statement is that my temporary table ...
1
vote
1answer
83 views

How to retrieve same column twice with different values of other column in same table [duplicate]

I have 3 tables which are following:: Village Village_ID Village_Name 446261 परसठ्ठी 446262 बम्हनी 446263 लाफिनखुर्द 446264 सोरम 446265 ...
1
vote
1answer
68 views

Handle huge amount of data using Java EE [closed]

We have a Java EE application that support Oracle, MySQL and SQL Server vendors. we are using a view model to view the fetched data from DB, also using pagination in the DAO model, and that's working ...
0
votes
2answers
63 views

Unknown Error Connecting To SQL Server in c#

Let me add a quick explanation to this post: I am using visual studio and if I create a connection to a database it works. I can query the database through the database designer (The one where you ...
0
votes
1answer
29 views

vb. net database data passing error

I get the error message "Error while inserting record o the table… Incorrect syntax near the keyword ‘return’.Incorrect syntax near ‘,’ ." Public Class Form10 Dim con As New ...
0
votes
1answer
35 views

How to import millions of records from SQL Server 2000 to Microsoft Excel 2010

I have around 3.5 million records that i want to import into a Excel 2010 file. I have tried using SQL Servers Import/Export Data Wizard and this worked but the problem was that it only copied about ...
0
votes
1answer
32 views

Store images in sql server - ASP.NET

How to save an image from Image Control to SQL Server? I am not uploading that image, but i'm capturing it through webcam and displaying it on image control.
0
votes
1answer
39 views

SQL query base on field of migration time

Table The Data Structure such as the following: [Table] Members, including member profile [Table] Departments, including department for member [Table] Migrate, Record Member migration between ...
-1
votes
1answer
26 views

Statement Insert [closed]

I want to insert a record in my table in SQLServer database. The code is: INSERT INTO UserControlMaster (UsercontrolID,Usrid,ModuleID, Allow_add,Allow_edit,Allow_Delete) VALUES((select ...
0
votes
2answers
44 views

Installing OpenEdge driver on Sql Server Cluster

I have a SQL Server 2005 64-bit cluster, and I need to import from a Progress DB frequently. I tried installing the Progress Openedge 10.0B driver on each VM in the cluster, but after I enter the ...
0
votes
4answers
98 views

How to retrieve same column twice with different conditions in same table?

This is my table: Anganbadi_ID Food Month ------------------------------------------- 1165 हाँ 1 1165 हाँ 2 1165 ...
0
votes
1answer
36 views

SQL Server identity column skipping ids on insert - no errors detected in logs

I am using SQL Server 2008 to maintain a database where I have an userAcccounts table where the user details are stored while registering on the website. The userID column is an integer with identity ...
0
votes
2answers
51 views

Need help reading multiple values back from sql server database in asp code

here is my codebehind for grabbing data from database: public static string getTestimonial() { string username = "xxxxx"; SqlConnection Conn = new ...

1 2 3 4 5 66