The sql-scripts tag has no wiki summary.
0
votes
0answers
7 views
Add new columns while generating scripts in sql server 2008
I' trying to generate the scripts for ma DB in Sql Server 2008.. and i'm able to do that, the scripts generated is :
USE [Cab_Booking]
GO
/****** Object: Table [dbo].[User] Script Date: ...
0
votes
4answers
80 views
Oracle: dynamically select script
How do I run a script in SQLPlus whose pathname is passed in a string. Something like the following (fails):
SET SERVEROUTPUT ON;
DECLARE
path VARCHAR2(128);
BEGIN
path := ...
1
vote
1answer
44 views
Insert and initialize a SQL column with value dependent on another column data
I am completely new to writing SQL scripts and could use a little help. I need to create a script that will run only once and add a column to an existing table. This column needs to have a value ...
0
votes
1answer
23 views
How to work with javax.persistence.sql-load-script-source?
I want to automatically insert data into my MySQL tables. Therefore I try to use the JPA property "javax.persistence.sql-load-script-source" in my persistence.xml:
<?xml version="1.0" ...
0
votes
2answers
49 views
Mysql sql script
I have a table T with a few columns out of which 1 column is having comma separated values. I want to process this column and update for all rows in the following manner
the column contains values ...
2
votes
2answers
46 views
SQL script to add reject reason
On the SQL below it finds "bad rows" in my excel sheet and copies them into another table.
This works perfect. However under each OR satement below i want to make the column "rejectionreason" = some ...
0
votes
1answer
24 views
Easiest way to execute a script in Visual Studio 2010 Express?
I'm looking for an easy way to run an SQL file on my SQL Express from Visual Studio Express.
When not using express, this way is nice and easy.
So far, using sqlcmd seems like my fastest option (i ...
1
vote
1answer
77 views
Can Flyway execute SQL scripts that are not treated as migrations?
We would like to use Flyway for database migrations. In addition to our migration scripts, we have a need to execute some scripts that should not be treated as migrations (and do not need to be ...
0
votes
1answer
177 views
How to get values between two dates from a table which have no data some days
i am getting a total from my table by grouping date. For example if you look at below picture when i try to get values between '08.03.2013' AND '22.03.2013'. There are no data for 18.03.2013 and ...
0
votes
0answers
53 views
Script Files open up another instance of SSMS
I have been experiencing weird behavior with how my Sql Server handles script files.
When I click on a .sql file, another instance of SSMS fires up. If I click on another, 3.rd instance fires. All of ...
0
votes
1answer
53 views
Creating a database through an sql script and then using that database
I have a script which uses an existing database to create tables and enter values. Now I wish to create the database through this same script and then create the tables and values which are just a ...
1
vote
0answers
41 views
How to save SqlCmd commands into a file?
I am using SqlCmd for SQL Server 2008. I want to save all the commands that I have typed in SqlCmd into a text file or script file. Is it possible? If so how to do so?
0
votes
0answers
198 views
SQL Server 2008R2 Management Studio Script Will Delete rows correctly, but same delete doesn't work in stored procedure?
I have a delete statement that will run correctly in management studio but the exact same statement will not run correctly from within a SPROC.
delete from
DB1.dbo.Table1
from
...
2
votes
1answer
228 views
Programmatically generate SQL script to create database without PRIMARY statement .. using scripter
I have create script which is automatically generated by Scripter.Script() method.
But if want to get rid of file paths included in the script. Which property is need to be set while using Scripter ...
0
votes
0answers
110 views
Use Visual Stuido to create alter table sql script
When I open a sql database file in Visual Stuido and open the table definition, Visual Studio automatically creates a CREATE TABLE script for this table definition.
I'd like to change some column ...
1
vote
2answers
217 views
How to Corrupt your database to check your sql integirty check logic is working?
I have written scripts for database maintains plan
now i want to test my script
i dont have any currpted database then how can i belive my integirty check script giving right error message if my DB ...
0
votes
2answers
308 views
How to create text file using sql script with text “|”
if i run below script without char "|" it working but when i am adding char "|" it is not working
how to add char "|" using sql script to text file ?
DECLARE @Text AS VARCHAR(100)
DECLARE @Cmd AS ...
0
votes
1answer
994 views
create .sql script with Visual Studio 2012 at c# and how run it?
I have a little problem about that. When i create a script with VS2012 ,it looks like that
(DataBase Name : LSProjeDB and have a table as Musteri) (created like that : go table > update>genarete ...
0
votes
1answer
32 views
SSIS and Scripts [closed]
I'm looking for good book sources to learn more about SQL BI Development Studio. Particularly in script tasks for data transformation and integration. Here are a few examples I've read through.
SQL ...
-2
votes
1answer
46 views
How to come up with a script for modifying an existing table in the database without losing the existing information?
I have an application with a database which they are working well and everything is fine.
Now, I just need to modify one table in the database by adding more columns to it. I am using SQL Server and ...
0
votes
0answers
68 views
How to create script file of mysql Event?
I have successfully created an event in my MySQL database.
When i use:
mysql> SHOW PROCESSLIST\G
I am able to see that event is enabled in my database.
I am not getting any problem in creating ...
0
votes
1answer
422 views
How to execute multiple sql files in postgreSQL linux?
I have many .sql files in a folder (/home/myHSH/scripts) in linux debian. I want to know the command to execute or run all sql files inside the folder into postgreSQL v9.1 database.
PostgreSQL ...
0
votes
0answers
70 views
How to create script file of mysql Events?
I have successfully created an event in my MySQL database.
When i use:
mysql> SHOW PROCESSLIST\G
I am able to see that event is enabled in my database.
I am not getting any problem in ...
2
votes
4answers
1k views
How to export specific records from a postgreSQL Table as Insert SQL Script?
The database is postgreSQL. I have a schema named: nyummy. A table named: cimory. The table structure is like this:
create table nyummy.cimory {
id numeric(10,0) not null,
name character varying(60) ...
0
votes
1answer
34 views
sql script from base
in my project database model is changed periodically, but since database contains test data they have to re-enter each time.
script to insert data quickly becomes relevant. at the moment it is done ...
0
votes
0answers
87 views
Sql Insert Script for more than 4 million data
I have a table at sql server. The table of data, there are more than 4 million. I want to take Insert Script.
I tried;
Tasks->Generate Scripts (data only) at sql server. I get an error Timeout ...
0
votes
2answers
122 views
MySQL columns with default null - stylistic choice, or is it?
In many flavors of SQL, there are three ways you can implicitly set a column to NULL on every row insertion. These are
columnname type NULL
columnname type DEFAULT NULL
columnname type NULL DEFAULT ...
1
vote
2answers
2k views
Operating system error 5(access is denied) when creating Database at Client Machine in C:\ Drive
I am installing SQL Server Express 2005 as a prerequisite of my c# windows form application, and under the Custom Action of my installer class, I'm trying to execute the script below, to create my ...
0
votes
1answer
154 views
SQL Server Script for deleting files from DB
I need to delete all rows of a table containing a bunch of files. Doing a simple DELETE FROM will more or less lock up the computer because of the sheer number of rows and size of files. I'm looking ...
0
votes
1answer
92 views
installshield projects runtime error
I've created a project in installshiel program uses SQL Server 2008 and written in C#.
Everything works fine and scripts of database also works fine but I had error when trying to install program ...
1
vote
1answer
268 views
Scripting all data from database causing tons of Foreign Key Constraint conflicts when re-running
I am using an EF code first generated database which provides some seed data, and imported data from other databases (ten thousands of rows, so it doesn't make sense to seed in EF). In an effort to ...
1
vote
2answers
1k views
please help me with Error 27506 Error executing SQL script
I'm trying to create a setup file using InstallShield 2010 for my project which uses SQL Server 2008
Everything is ok all necessary programs are being installed but when I try to install my project ...
0
votes
1answer
62 views
Common database scripts for all RDBMS
I am developing a tool that will run database scripts to create tables in different RDBMS' through simple JDBC connection.
Now my problem is for JDBC connection creation for different RDBMS I have ...
1
vote
1answer
577 views
EF Migrations Update-Database: Specify Script Name
Before applying a migration in EF Code First, you can ask to see the SQL script it intends to apply with:
PM> update-database -script
Unfortunately this opens a script named something like ...
3
votes
1answer
2k views
Executing script file in h2 database
First of all I would like to say am new to h2 database. I need to execute a sql script file in h2 database. I have a script file test.sql and I want to execute this in h2 database. Is it possible?
1
vote
2answers
630 views
How do I run multiple scripts one after another in Oracle?
I have the following script:
ALTER TABLE ODANBIRM
ADD (OBID NUMBER(10, 0) );
----------------------------------------------------------------------------
CREATE OR REPLACE TRIGGER TR_OB_INC
BEFORE ...
1
vote
2answers
962 views
Write SQL script to insert data
In a database that contains many tables, I need to write a SQL script to insert data if it is not exist.
Table currency
| id | Code | lastupdate | rate |
...
-2
votes
6answers
3k views
Execute Stored Procedure for List of Parameters in SQL
I have an Stored Procedure that have an argument named Id:
CREATE PROCEDURE [TargetSp](
@Id [bigint]
)
AS
BEGIN
Update [ATable]
SET [AColumn] =
(
Select [ACalculatedValue] From ...
6
votes
3answers
259 views
Calculate sum of column for selected Ids in SQL
These are my tables:
Member: Id, Points
CartRegister : Id, Member_Id, CartId, RegisterDate, Point
SelectetMembers: Id, Member_Id
Members can register Cart in CartRegister, and in Member.Points All ...
1
vote
1answer
236 views
How to check if a SQL script is compatible with sql server 2000
I wrote a lot of scripts for SQL Server 2005, but now I have to rewrite those original scripts to make them work on SQL Server 2000.
I don't remember all the differences between 2005 and 2000. For ...
4
votes
3answers
6k views
How can I describe a table in Oracle without using the DESCRIBE command?
I'm having a hard time with a class I am taking. We need to write an Oracle script that will act just like the DESCRIBE command. The book we are using describes how to work with the Data Dictionary ...
0
votes
1answer
213 views
SQL query inside a SQL Script
I have a SQL script, which spools data to a file.
Sample Existing SQL script:
whenever sqlerror exit failure rollback
spool test.txt
set serveroutput on
select * from emp;
spool off
/
But, I would ...
1
vote
2answers
886 views
Executing a SQL Query multiple times with different parameters
I have a SQL stored procedure that I need to execute several times with different parameters. Is it possible to execute a SQL-script of some kind that will execute multiple times with like an array ...
0
votes
2answers
826 views
How to execute sql script file in java in Unix
I have this sql script that I would like to execute in a java program. It takes on 3 parameters: dropper_id, to_char(begin_dt), to_char(end_dt). How would I do this?
The program is held on a Unix ...
1
vote
1answer
659 views
Firebird 2.5 - conditionally convert column data type from float to double precision
I have redesigned my Firebird based SQL database. As part of this process I created new table named HARMONICS. Using GUI based administration tool I created following columns:
HARM_LP_ID Integer NOT ...
4
votes
5answers
9k views
How to run multiple SQL scripts using a batch file?
I have a case where i have got 10+ SQL script.
I don't want to go and run all my scripts 1 by 1.
Is there a way that i can run all my scripts in succession in SQL Management studio.
I found this ...
1
vote
2answers
969 views
Create SQL Server tables and stored procedures in one script?
I have a SQL script that is setting up two database tables with their keys and constraints without any problem. I won't include the whole code but the 'skeleton' of it looks like this:
BEGIN
...
1
vote
3answers
14k views
How to create a oracle sql scrpt spool file
I have a question about spooling the the results of my program. My sample sql script looks like this.
whenever sqlerror exit failure rollback
set heading off
set arraysize 1
set newpage 0
...
1
vote
1answer
210 views
<SQL Script>Invalid column name 'XXXXXXXX'
I have a sql script say "abc.sql" which I am calling from a batch file using sqlcmd like
Calling batch script like
script.bat arg1 arg2
In batch
param1=%1
param2=%2
Then calling SQL script ...
1
vote
1answer
468 views
Logging SQL script errors
I have a SQL script for postgres file with following command.
COPY product_master(productId, productName) FROM 'product.txt' DELIMITERS ',' CSV;
I want to handle errors of this command (log the ...
