Tagged Questions
0
votes
0answers
16 views
Microsoft.SqlServer.Replication.ComErrorException; cannot change properties to “Any CPU”
As the title states, I am having issues with the MergeSynchronizationAgent class in C#. When I try to create my syncAgent using the following call:
syncAgent = subscription.SynchronizationAgent;
...
-1
votes
1answer
23 views
sql server lisiting table is not working properly when connect from java
I have executed select name from test1.sys.tables query in sqlcmd and got proper result.
But same query is not working in java-sql connection
querying from java lines.
String show_tbl_qry="select ...
0
votes
0answers
18 views
c# WinForm App setup wizard w/ network DB and multi Cient
I have been searching for this for couple days but was unlucky finding any answer.
I am building a winform application . Where the application will be installed to multi PC's on the same network and ...
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 ...
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, ...
-2
votes
0answers
17 views
'what is the common problems with managing large data sets in a SQL Server [closed]
What is the common problems with managing large, complex data sets in a SQL Server environment
0
votes
0answers
32 views
Execute sql script using sql command
C:\>sqlcmd -S(local) -U(sa) -P(password) -i F:\sql.sql
HResult 0x3, Level 16, State 1 Named Pipes Provider: Could not open a
connection to SQL Server [3]. Sqlcmd: Error: Microsoft SQL Server
...
-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 ...
-1
votes
4answers
113 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 ...
0
votes
1answer
24 views
Linq DataContext.CreateDatabase() force SQL Server 2005
I'm using Linq DataContext.CreateDatabase() to generate a database. Currently it's generating a SQL Server 2008 database. I would like to know if it's possible to make CreateDatabase() generate a SQL ...
-3
votes
0answers
31 views
Is it possible to select database table in asp.net web application during runtime [closed]
I have an web application in which the user should be allowed to select the sql Table from their system as we see in asp.net sql DataSource.
or
How we can extract data from database during runtime...
...
-3
votes
2answers
41 views
SQL Alter Statement for Primary Key Column
I am having a problem making the column I am adding NOT NULL using the SQL ALTER statement. I am fairly novice with SQL so any guidance would be great. I am using SQL Sever 2008 and I am receiving an ...
0
votes
2answers
46 views
Cannot connect to SQL Server instance from web application but can from SSMS
I've got SQL Sever 2008 R2 Express installed and am able to connect to it with SSMS using (local) and Windows Authentication.
However, when attempt to connect to it from an MVC Web Application ...
0
votes
1answer
22 views
Adding rows for recordsets that have incomplete date ranges
This one is tricky for me, can't figure it out.
We have a system where we calculate inventory numbers on the fly. If there's a month where a customer doesn't have any orders, there's no record for ...
2
votes
2answers
40 views
Query to join three tables With Sum
I am trying to join thee tables and there's one Sum value but its not showing any error but its a wrong value... but if I join with two table it working correctly.
the query is
SELECT ...
0
votes
1answer
17 views
how to add Columns to a table by performing aggregate function on the field of other function?
table schema of tables is as follows :
1) MainTable(Date,CC,BU,Amount,Mode)
2) Table2(Date,CC,BU,column1,column2,column3,column4)
here,
for Table2
column1 = select SUM(Amount) from MainTable WHERE ...
0
votes
1answer
40 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 ...
1
vote
2answers
82 views
Insert data into SQL Server from stored procedure
My knowledge in SQL not so far, please help me with my issue:
I have a script that generates some data. I need to insert this data into a table with following structure:
Variable_Sample (idsample, ...
1
vote
3answers
80 views
Keep Original value of cell if NULL is selected MS SQL Server 2008
UPDATE [MyDatabase].[dbo].[Device]
SET nDeviceTypeID =(SELECT nDeviceTypeID FROM
DeviceType WHERE sDisplayName =COALESCE (@Role,sDisplayName))
WHERE nDeviceID IN (SELECT nDeviceID FROM ...
1
vote
1answer
44 views
SQL Server can you use EXCEPT or INTERSECT and ignore a column?
Here's my question,
CREATE TABLE
#table1(ID int, Fruit varchar(50), Veg varchar(50))
INSERT INTO #table1 (ID,Fruit,Veg)
VALUES (1,'Apple', 'Potato')
CREATE TABLE
#table2(ID int, Fruit ...
0
votes
0answers
36 views
MYSQL script into Microsoft sql server 2008
i have a mysql script which is 160 MB i want to convert it into the microsoft sql server 2008 kindly help me out help me out how to import such a big script into Sql Server
0
votes
1answer
18 views
solution for getting restore live database on system crash [closed]
I'm trying to come up with a backup strategy for SQL Server 2008. I am thinking of doing full backup once a week, differential backup once a day and transaction log backup every 15 minutes. The thing ...
0
votes
3answers
52 views
A little help to better understand JOINS
I have 3 tables from where I substract data, and to get most of the data I have a query that works pretty good, but I can't get a specific row and that's where I need some help.
Table 1:
...
-1
votes
0answers
23 views
SQL Server number of keys in an index page
I was looking for a way to find out how many keys will stored in an index page of SQL server.
From whatever information I could find people explain it as follows
Lets key is of type int hence 4 byte ...
0
votes
2answers
108 views
How to join more than two tables in sql server query
I am creating a stored procedure in SQL Server 2008 to find student data from first table, health details from second table and attendance details from the third one. I want to join these tables using ...
0
votes
2answers
59 views
How can I get the result of a stored procedure in C#?
Here is my code in C#:
float r_discountValue = 0;
SqlConnection con = Constant.GetConnection();
SqlCommand cmd = new SqlCommand("Coupon_GetDiscountFromValidCouponCode", con);
cmd.CommandType = ...
0
votes
1answer
75 views
Sync multiple and different DB to one DB (sql Server 2008)
I need suggestions on how i could accomplish this...
i have 3 employee solutions
Every solutions with its own DB
what im trying to do is to unify all these three DB into one. i would also like to ...
1
vote
2answers
73 views
Fetching Records from multiple tables month wise
I am having scenario like this : I am having many tables and each table has date fields.
Table: FA
Id | Created_Date |
------------------------
1 | 1/12/2012 |
2 | 2/15/2012 |
3 | 2/25/2012 ...
0
votes
0answers
20 views
Scalar User-Defined Function in SQL 2008 Not Being Recognized
I created the following function in SQL 2008
CREATE FUNCTION dbo.udfSetSupplyStatus(@strOrderID nvarchar(16), @intLineNo int, @intOrderQty int, @strPartID nvarchar(16), @strWarehouseID nvarchar(16), ...
0
votes
2answers
47 views
Bifurcate Records respective to months
Here, I am going to explain my scenario:
I have following tables:
Table : Service_Type
Id | Service_Name | Service_Table_Name|
----------------------------------------
1 | FA | FA ...
1
vote
0answers
35 views
Best type of backup for an SQL server database [closed]
I am trying to create a backup strategy for a company which has about 5 different locations. It shouldn't be too costly. I was thinking database mirroring between the two main sites.
This way if one ...
0
votes
2answers
70 views
How to fetch the next records from a table in sql database one after other
I am developing an application where I need to send the Emails to all the users in the table. Since the number of users is in millions, so to select all the users at once won’t do any good. Is there ...
-1
votes
2answers
84 views
logical deletion/soft deletion in entity framework asp.net [closed]
Any one please provide a sample for logical or soft deletion in data base in user data table .so the data related to deleted user and all related information can be fetch later using query .
Thanks ...
-2
votes
7answers
61 views
SqlCommand error
At the moment I'm trying to populate my SQL Server database with 3 values I'm hard coding in through a C# program.
My database has 4 columns which are as follows:
RowID (this should get updated ...
1
vote
0answers
33 views
Database Design for similar data across multiple time
I am attempting to come up with a Database Design that works well for a specific division of my company.
Basically, I have a list of Account Numbers with a ton of fields associated with them. My ...
-1
votes
1answer
39 views
3 inputs 5 outputs. Creating new columns on existing data
I have input: bruto, a/p %, t/a%:
Example:
bruto | a/p% | t/a% |
100 | 50 | 25 |
Output I want:
bruto | a/p% | Neto | t/a% | total |
100 | 50 | formula:100/100*a/p%=50 | 25 | ...
3
votes
4answers
62 views
Return all values including NULL
I have two tables in SQL Server 2008, and by doing a JOIN I want to get all values, however I get only the values where records exist even though I need the fields with NULL records.
Here is the ...
1
vote
1answer
71 views
Sybase to SSIS connection error
i am trying to connect to sybase using SSIS for last 5 days but i am not being able to. I have posted it before My PROBLEM but no one seems to have to solution. May be i need some other dirver or ...
4
votes
1answer
56 views
SQL Server Query Strange Output
I have the following SQL Server query:
SELECT ISNULL(MIN(P), 999) AS FLD
FROM (SELECT '0' AS P) AS T
WHERE (1 > 4)
How come the output of this query is '*' ?
Please explain
Thanks
0
votes
0answers
37 views
Is there any equivalent in MongoDB for MS-SQL command 'SET IDENTITY_INSERT tablename OFF'? [duplicate]
I was trying to update a _id field of a document in MongoDB.
The following is the command I derived based on my understanding.
...
0
votes
0answers
26 views
deploying multiple database on 1 server or multiple server
I'm going to deploy my project, which like this:
My application use a database named B.
I have to deploy this application to many customer.
Each customer have their own data/database.
Ex:
+Customer ...
4
votes
2answers
122 views
Compare comma delimited strings in SQL
I have search requests that come in a CDL ("1,2,3,4"),("1,5"). I need to compare that to another CDL and return back all records that have a match. The kicker is the position of each number isn't ...
3
votes
7answers
138 views
Select rows where value is equal given value or lower and nearest to it
Sorry for confusing title. Please, tell, if it's possible to do via db request. Assume we have following table
ind_id name value date
----------- -------------------- ...
0
votes
0answers
34 views
Columnstore Indexing technology in MySQL with vector based batch processing
I am using MySQL as a database and as the database is large, it has been indexed columnwise. But now there is the requirement to use the MSSQL like method for indexing as it has been said to perform ...
-5
votes
1answer
68 views
non first normal form [closed]
When should I prefer non first normal form to normal forms,how can I understand I should use non first normal form?
Can I build a non first normal form database in SQL SERVER 2008 R2?
If yes how ...
0
votes
2answers
494 views
radius search by latitude / longitude
I have found a bunch of answers for this question using mysql , but I wasn't able to convert anything into a query ms sql 2008 can use. I have a longitude and latitude column for each row in the ...
1
vote
2answers
53 views
Two sorted subqueries into one result
So I have two subqueries that return the same columns from the same table
Query #1:
SELECT ...
0
votes
2answers
53 views
What is wrong with this simple SQL Statement?
I've got the following SQL Statement:
SELECT * FROM Children WHERE Child_Name LIKE '%' + Child_ID + '%'
SQL Server is reporting the following: Conversion failed when converting the varchar value ...
2
votes
2answers
82 views
Forbid insert into table on certain conditions
I have a SQL Server 2008 database. There are three terminals connected to it (A, B, C). There is a table SampleTable in the database, which reacts to any terminal activity. Every time there is some ...
2
votes
3answers
146 views
How can I populate my database's all tables with random data?
Is there such a software out there? It doesn't matter if the data itself make sense. I am just worried about the fields to get populated. Basically, it will read the table definitions and generate ...





