Tagged Questions
The sql-scripts tag has no wiki summary.
12
votes
3answers
8k views
SQL Server - Running large script files
I have a database table on a development server that is now fully populated after I set it running with an import routine for a CSV file containing 1.4 million rows.
I ran the Database Publishing ...
7
votes
6answers
4k views
T-SQL STOP or ABORT command in SQL Server
Is there a command in Microsoft SQL Server T-SQL to tell the script to stop processing?
I have a script that I want to keep for archival purposes, but I don't want anyone to run it.
6
votes
3answers
173 views
Maven directory structure: good place for SQL (DDL, …) scripts
What's the "best" place for SQL, DDL, ... scripts in the Maven standard directory structure?
See http://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html
I bet ...
5
votes
2answers
125 views
How do you create and update your SQL scripts?
I'm wondering what is the best way to create and maintain databases maps and SQL scripts. I know I'm more a fan of writing the SQL script by hand on a text editor (plus designing a map to have next to ...
3
votes
3answers
2k views
How do I generate a script of all database objects in Toad for MySQL
In the freeware version of Toad for MySQL (latest version), I can generate a script of all tables in my database in one file. However, for stored procedures and functions, Toad generates a separate ...
3
votes
4answers
3k views
How to execute sql-script file using hibernate?
I gonna write several intergration tests which will test interatcion with db.
For each test I need to have a certain snapshot of db. Each db snapshot saved in .sql file.
What I want is to execute ...
3
votes
3answers
9k views
How do I set a SQL Server script's timeout from within the script?
I have a large script file (nearly 300MB, and feasibly bigger in the future) that I am trying to run. It has been suggested in the comments of Gulzar's answer to my question about it that I should ...
2
votes
1answer
54 views
Generate Multiple Scripts from SQL Server Query Optimizer
I looked around but couldn't find an answer to this question so I figured I would ask. So I am in the process of using the SQL Server query optimizer on several long stored procedures. When the ...
2
votes
2answers
32 views
SQL Server 2008 column in only one table
First a quick explanation: I am actually dealing with four tables and mining data from different places but my problem comes down to this seemingly simple concept and yes I am very new to this...
I ...
2
votes
1answer
78 views
anything like JSFiddle for testing/storing SQL Queries?
Is anyone aware of something like JSFiddler for testing/storing SQL Queries? I use pastebins, jsfiddle etc a lot to store and test out JS code snippets online.
2
votes
4answers
195 views
Is it possible to write a SQL script for both MySQL and PostgreSQL?
I'd like to write a single SQL script that will run on a default installation of either MySQL or PostgreSQL (versions 5.5 and 9.0, respectively). Is this possible?
I can almost do it by adding SET ...
2
votes
2answers
1k views
How to run an SQL script against a MDF file?
I've created a database model with model-first method using Entity Framework 4.0. I then created an sql script using the Generate Database from Model... I've also created an SQL Server Database file ...
2
votes
1answer
1k views
Mysql: How to call sql script file from other sql script file?
Suppose I have wrote script Table_ABC.sql which creates table ABC. I have created many such scripts for each of required tables. Now i want to write a script that call all of these script files in a ...
2
votes
1answer
216 views
Quickly generate ascii text sql scripts based off of sql 2008 database
This is starting to frustrate me, mostly because it should be easy to do but I can't find anything.
I am trying to version control my database. The method I have decided upon is to generate scripts ...
2
votes
6answers
6k views
How to execute sql-script file in java?
I want to execute sql script file in java without reading all file contents to the big query and executing it. Is there is any standard way?
2
votes
7answers
4k views
SQL Management Studio Express opening SQL scripts in Notepad
When I go to File > Open > File and select a .sql script, or even when I drag a .sql file into the SQL Management Studio Express window, it opens the script in Notepad which is totally useless when I ...
2
votes
4answers
978 views
How to apply SQL scripts on a remote SQL Server?
I'm trying to completely automate my builds and part of it is applying SQL scripts to the SQL Server.
I've created a batch file that calls SQL Server utility (OSQL.EXE) to apply scripts and it works ...
1
vote
2answers
64 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
45 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
2answers
97 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
32 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
2answers
58 views
Query Help: Totaling parent / child items
[Ed. Note: Related to this SO question; didn't edit question because the problem has fundamentally shifted and question/answers from before are still valid]
Looking for advice of how best to create a ...
1
vote
2answers
300 views
what is the correct syntax for executing .sql script in MySQL command line?
I am confused. From references I have seen online, the command to execute a text file script is this:
mysql> --user=root --password=admin --database=zero <query.sql
However when I ran this, ...
1
vote
1answer
745 views
Script all views/functions/proceudres in a Sql Server database in dependency order
Sql Server 2008 (and probably most other versions): Management Studio has a 'generate scripts' option that can in theory script a whole database with all objects (Right click, tasks, Generate ...
1
vote
2answers
163 views
How to switch database context to newly created database?
I wrote a script to create a database:
1: USE master;
2: IF (db_id('myDB') is null)
3: CREATE DATABASE myDB;
4: USE myDB;
but it does not work... I got an error: Could not locate ...
1
vote
1answer
26 views
mysql performance website tables
Hello everyone,
I am designing a website and want to build a database which deals with comments, searches, holding all information, users, and holds all information. I want to know if there is more ...
1
vote
1answer
141 views
Anyone know a good freeware sql script generator?
I have found this one:
http://www.sqlscriptgenerator.com/
Which is actually decent enough but it puts all the scripts in one massive sql script file with no option to generate one script per object.
...
1
vote
1answer
38 views
Regarding SQLl*Plus set statements
I am spooling from a sql script. when sql statement executes the variable substitution it displays it. how can i turn it off. it displays the below along with the csv contents.
old 12: where file_id ...
1
vote
3answers
123 views
How to put MySQL code into source control?
I know I can copy all my MySQL code manually to files and then put those files into source control. But is there any way to do this automatically?
I would like to do this to stored procedures, but ...
1
vote
3answers
1k views
How To Automatically Script SQL Server: 'Generate Scripts' for SQL Database
I want to run scheduled nightly exports of my database code into my SVN source.
It's easy to schedule automated check-in's into svn from a folder, but scheduling the export from SQL in SQL Management ...
1
vote
2answers
389 views
Abort MySQL script conditionally
Given: MySQL database. Sometimes db schema changes and updates are rolled out (in the form of sql script). In order to guarantee correct order of updates applied (no duplicate updates, no updates ...
1
vote
1answer
300 views
LINQ's FirstOrDefault in SQL script?
What is the SQL language keyword for the LINQ-to-SQL FirstOrDefault or SingleOrDefault?
Is it TOP(1)?
EXAMPLE:
SELECT TOP(1) @ItemCode = ItemCode FROM VendorItem WHERE VendorId = @VendorId
There ...
1
vote
1answer
2k views
Entity framework: ObjectContext get generated SQL change script?
Is there a way to get all the SQL change script of the object context?
Note: I am not talking about ObjectQuery.ToTraceString();
1
vote
1answer
462 views
Should I explicitly “SET IDENTITY_INSERT [Table] OFF” after turning “ON”?
Does SET IDENTITY_INSERT [Table] ON persist beyond the scope of a SQL Script? I'm wondering if I need to explicitly set it to "OFF" or if SQL Server knows that it should only use that setting for the ...
1
vote
1answer
1k views
object_id() vs sys.objects
I use database scripts where I check for the existence of a Stored Procedure then drop it then create it.
Which of the following would be more efficient for checking and dropping SPs
Option 1
IF ...
1
vote
2answers
553 views
How can I su from root to db2inst1 and invoke a SQL script, in one line?
How can I su from root to db2inst1 and invoke a SQL script all in 1 line? I am thinking about something like this:
su db2inst1 | db2 CONNECT TO myDatabase USER db2inst1 USING mypw; db2 -c -i -w -td@ ...
1
vote
2answers
628 views
In the Visual Studio SQL editor, how do I get rid of the boxes?
I usually create my SQL tables and stored procedures by writing a script inside Visual Studio. This works really well for me except for one simple annoyance: VS puts blue boxes around all the SQL ...
0
votes
1answer
62 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 ...
0
votes
1answer
89 views
How to change composite key column type from varchar to nvarchar?
I need to change all the varchar columns to the nvarchar type. I've generated a script with the help from this thread SQL Server - script to update database columns from varchar to nvarchar if not ...
0
votes
1answer
64 views
Executing parameterized .sql commands
We have an SQL script in a .sql file. It has a couple of parameters defined like this
DECLARE @device_directory NVARCHAR(250) = '$(CONFIG_DBPATH)'+'$(CONFIG_DBNAME)'
We then execute this script in ...
0
votes
1answer
50 views
How to run a sql script from an ant script
i need to rename a file in database using sql script. The sql script must be executed from an ant script.How can this be done?
0
votes
1answer
26 views
How to filter suggestion users by interest in SQL Server 2005?
I working on social network site in that I have 3 SQL table to search users for suggestion.
for ex: user have must choose one category at registration time.
User Table:
userID | username | ...
0
votes
1answer
76 views
Changing the default “Processed xx total records” for scripting SQL data
In SQL Server 2008, you can right-click on a database and select "Generate Scripts...". You can then choose a particular table and choose "Data only" under the "Types of data to script". When you do ...
0
votes
1answer
112 views
Execute SQL script on deploy
i need to execute little sql script(insert some data) after deploying JavaEE/JPA(eclipseLink) project too glassFish - what do you thing would be the best way to do that. I know that hibernate has very ...
0
votes
1answer
144 views
Making git diff (NOT difftool) and git log -p work with *.sql files and Windows PowerShell
I know how to configure an external tool to view differences with a call to git difftool. However, if I want to see an 'dump' of all changes for entire history of a file to my console window, I ...
0
votes
0answers
205 views
trying to execute some sql script in oracle using “Runtime.getRuntime().exec()”
i am using java on which i have to execute some .sql script in oracle due to this resion i used SQLPLUS , for executing .sql file on sql command promt i am using "Runtime.getRuntime().exec()" so ...
0
votes
1answer
214 views
How to search duplicate records and order by columns from MSSQL Table without primary key?
I getting top 20 record from SQL Table
There is a column State in My MS SQL Table there are some numeric data,
In my case I skipped numeric records from C# function after I am getting duplicate ...
0
votes
3answers
173 views
SQL Script for SQL Azure
I'm developing an app that uses SQL Azure. I don't have an account to access Windows Azure and I want to start writing SQL script.
Can I use my SQL Server 2008 to test my SQL Azure script?
0
votes
4answers
244 views
Sql script display leading 0 in excel output file
I have sql script "example.sql": SPOOL &1 Select '<.TR>'||'<.TD align="left">'||column_name||'<./TD>'||'<.TR>' from table1; spool off..which dumps it contents to cshell ...
0
votes
1answer
140 views
Any easy way to generate a build script from an H2 database?
let's image that one creates an H2 database with table, indexes, etc... Is there an easy way to extract a SQL script to recreate the structure of this database in another H2 database?
I am not ...