Questions tagged as 'sql-server'

1
answer

Problem when generating one in SQL server to show them in an xtraReport?

When generating the query for the dates in SQL the result is correct, but when I put it in separate queries, when I want to see it in XtraReport only shows me the first one, my question is how could I solve this problem ? either fr...
asked by 15.10.2016 / 17:09
3
answers

update data from one table from another in SQL

I would like to know if it is possible, and how it is done, to update data from one table by others from another. For example: Table 1: id_tabla1 | Nombre | Descripcion Table 2: id_tabla2 | Nombre | Descripcion The difference be...
asked by 03.11.2016 / 02:56
0
answers

Exit code (Decimal) -2068054016 SqlServer. How can I solve it?

Exit code (Decimal) -2068054016 Error description The system can not be found in against the specified route     
asked by 30.09.2016 / 20:58
1
answer

Perl execute SQLCMD with variables

I need to pass variables to the SQLCMD command. I have the following script: #! /usr/bin/perl use strict; use POSIX qw(strftime); use Config::IniFiles; my $TODAY = strftime "%Y%m%d", localtime; my $cfg = Config::IniFiles->new( -file =>...
asked by 04.10.2016 / 17:11
1
answer

How to fix this error in sql server (windows 8) x64

I try to install sql server x64 in windows 8 but it presents me the errors (attached image). help please choose the first attempts to de-install and re-install, to change installer. I could not correct the error, but confirm that the e...
asked by 05.10.2016 / 01:22
1
answer

Entity Framework and nvarchar

When the Entity Framework creates fields by default in a table of type string, use nvarchar . But I understand that nvarchar takes more space than varchar . Can the use of nvarchar double the size of a table? Is it reco...
asked by 22.08.2016 / 19:26
1
answer

Backup of the physical part of a Server 2000 Sql Base

I need to do, a backup of my database in sql server 2000, but only of the physical part, because I modified some tables, and add some new SP, well thank you very much from now, very happy with this community. Greetings     
asked by 11.11.2016 / 20:13
1
answer

perform an update type trigger

I have the following query: Realize a trigger of type update in the table "x" and verify if the new data of the name and appelled already exist, if they do not change, otherwise modify the information. create trigger ActualizarInfo on tabla1 f...
asked by 10.08.2016 / 22:51
2
answers

How do I do the following copy a column of a table to another table

I explain in database how I do if in the database users.dbo.Users_Master I have 18,000 accounts or more and made the mistake of adding 2,000,000 points in the points column but before I had a backup which shows that the maximum of any user was 6...
asked by 14.08.2016 / 23:54
1
answer

Transaction Management in SqlServer and vb.net with TransactionScope

Using tran As New Transactions.TransactionScope Try InsertaEnTabla1() InsertaEnTabla2() InsertaEnTabla3() tran.Complete() Catch ex As Exception...
asked by 19.08.2016 / 19:12