Tagged Questions
0
votes
0answers
20 views
copy package from schema B to schema C [migrated]
I am in the next situation: I am using oracle 11g. I am connected to an user, lets say schema1, where are a lot of permissions. I want to create a script which will copy the Package1 (and its body) ...
1
vote
1answer
43 views
SQL Server - Generate script without primary key
I was looking for an answer but I can't found it.
I'm trying to make a generated script of my data (I mean, all the INSERT INTO commands).
Because access permissions, I can't do a SET IDENTITY_INSERT ...
1
vote
1answer
33 views
Working with a sql script in a Flask application
I have created a structure of a basic Flask application and I need guidance with executing a sql script. My folder structure is this:
-simpleblog (name of app)
flask (contains the virtual ...
0
votes
2answers
33 views
Remove the first row from CSV file - php csv file upload issue
This script running fine but adding first row from excel file (header names). I want to make ignore first row in loop - Please check the script -
<?php
//connect to the database
$connect = ...
0
votes
3answers
53 views
CSV File With PHP and MySQL - Data not uploading properly in database
I download the script from - http://www.k-fez.com/?p=101 website and trying to upload CSV file on my server. It uploading file successfully but Blank - please check image
<?PHP
session_start();
...
0
votes
3answers
33 views
Is it possible to write a java program that pop a window where user can write SQL script Code?
i would like to know if there is a way to write a java program that pop a window where the the user can enter some SQL Script code ? the result would be save in a .SQL File.
-1
votes
1answer
30 views
parameterized SQL script
SET ECHO ON
SET VERIFY ON
ACCEPT CNUMBER CHAR PROMPT 'CUSTOMER NUMBER == '
ACCEPT PNUMBER CHAR PROMPT 'PART NUMBER == '
ACCEPT OD date format 'YYYYMMDD' PROMPT 'ORDER DATE == '
DELETE FROM ORDERS ...
0
votes
0answers
19 views
Conditional command execution for installer
I was wondering if I could get help with my installer.
Right now it come packaged with the command line SVN client.
This package is to download, install, update, and configure the application ...
1
vote
1answer
41 views
Running SQL scripts across multiple servers
Background:
I have a Test Server (SQL Server 2008 R2) that contains a DB in which I store information about other DBs from my Production Servers (Mix of SQL Server 2008 R2 and 2012). I have ...
0
votes
0answers
39 views
SQL Table Cartesian. Dynamic Cross join
I have some issue with SQL dynamic cross join script.
I have tables with some variables and it's values (Variable and Variable_Values), and i have table Variable_Sample (see DB diagram).
...
0
votes
2answers
34 views
sql script for special data representation
Please help me with my problem of data representation.
I have some SQL script, that creates the following data presentation:
Declare params cursor for
Select distinct id_variable from ...
1
vote
0answers
38 views
A way to check if a user is running a script?
Background info: Java script for a bot for a game, user runs a loader, enters their username and auth code, and the loader uses URLClassLoader to create an instance of the script to provide for the ...
0
votes
0answers
36 views
Manually execute php script without running it through ssh
My web host has disabled ssh and commandline. I have tried using a cron task but to no avail. I'm trying to install a wiki extension and it is requiring me to execute a script named update.php in ...
0
votes
2answers
44 views
Can't change SQL to have an id as primary key(AI) rather than username
I recently started using Jpmaster77's Login Script, and it has shown to be very great. However, now I am trying to experiment with it. I am trying to create a new table at the beginning of the row ...
0
votes
2answers
110 views
Teradata client on Unix Solaris
I deploy some .bteq and .sql scripts on a TERADATA database. For doing this, I use a client on my desktop called BTEQWin version 13.10.0.03.
I get the .bteq/.sql from a version control like pvcs/svn ...
0
votes
2answers
32 views
Creating an Update Trigger with Where Filter
i'm new at creating triggers. I'm attempting to create a trigger which updates a the tblServiceOrders.GeneralSymptoms with tblAccounts.HotNote where tblAccounts.Number = tblServiceOrders.AccountNumber ...
0
votes
2answers
121 views
Query values into a variable in shell script
I have query which gives me result as
app_no
--------
(0 rows)
I need to get only the rows part and that too just the number. I am saving the result into a variable but I am not able to parse it.
...
-1
votes
1answer
63 views
How to change the length of a column in a SQL Server table via T-SQL [duplicate]
I am looking to find out how to alter a fields properties contained in an SQL Server 2008 table via an SQL script.
I'm looking to change the 'Length' property specifically.
Does anybody know how to ...
1
vote
1answer
145 views
#1064 - You have an error in your SQL syntax '(14) NOT NULL, `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0', `ip` ' at line 3
Im getting this error:
#1064 - You have an error in your SQL syntax; check the manual that corresponds
to your MySQL server version for the right syntax to use near '(14) NOT NULL,
`ID_MEMBER` ...
0
votes
2answers
55 views
Run an SQL script only if a selection over a table before it gives a result. If it doesn't give a result the SQL script sould not run
I would like an SQL script to run only if a SQL command selection over a table give a result.
If it doesn't give a result the SQL script sould not run.
Will this be possible to do?
Thank you.
0
votes
2answers
94 views
Generate Class.vb File Programmatically
I want to create a class builder which will get the tables from the specified database and build my [className].vb file - at the push of a button!
For example:
Dim strBuilder As New StringBuilder
...
0
votes
2answers
102 views
Insert text on specific positions with notepad++ python script plugin
I should preface that I am a complete Python Newbie, but i need to fulfill a task :(
I already installed the python script plugin and read how it works. But i have huge problems to understand what i ...
1
vote
2answers
76 views
Building SQL deployment scripts into the application?
We currently have a rather manual, fiddly, messy & error prone way of running SQL deployment scripts when we update our clients' software installations. We're considering finding a 3rd party SQL ...
0
votes
1answer
75 views
HSQLDB 2.2.9 Running scripts + SqlFile
When I was searching for some HSQLDB samples of how running SQL scripts I found in HSQLDB 2.2.9 Javadoc documentation that there is a perfect sample in src/org/hsqldb/sample/SqlFileEmbedder.java and ...
1
vote
2answers
103 views
T-SQL install / upgrade script as a transaction
I'm trying to write a single T-SQL script which will upgrade a system which is currently in deployment. The script will contain a mixture of:
New tables
New columns on existing tables
New ...
1
vote
3answers
618 views
SQL Server 2008 Generate Data Script and check existing records
I am using the SQL Server 2008 Management Studio Generate Scripts... wizard to generate data only scripts for various tables in my database.
The problem is it generates a bunch of insert statements, ...
0
votes
2answers
181 views
Select rows based on two columns in SQL Server
I have a table which stores data where accidentally data has been stored multiple times because of case sensivity for the username field on server side code. The username field should be regarded as ...
-3
votes
2answers
61 views
it's showing “Parse error: syntax error, unexpected end of file on line 16 ” [closed]
<?php
$FName = $_POST['FName'];
$Email = $_POST['Email'];
$Quote = $_POST['Quote'];
//conect\\
mysql_connect("localhost","root","") or die ('I cannot connect to the database because: ' . ...
1
vote
1answer
47 views
How to get the “Generate Script” of a DB by T-SQL
I know how to do it using the SQL management for generate script to create a whole DB in SQL.
I need to get the same script but using T-SQL.
Anybody knows how to do this.
0
votes
2answers
233 views
Is there batch script command where I can change variable values in a .sql file?
I am creating a batch file where I am restoring a database from an IP address and then executing a couple .sql files onto the database. In a couple of the .sql files there are variables declared and ...
1
vote
1answer
273 views
How Can I Remove mdf and ldf File In SQL Server 2008?
I have this code:
IF EXISTS (SELECT * FROM sys.sysdatabases WHERE name='MyDatabase')
begin
DROP database MyDatabase
end
Go
CREATE DATABASE MyDatabase
But I see this error after executing this ...
0
votes
2answers
459 views
change user to oracle and run sql in a shell script
I am a root user and in a shell script I would like to change user to oracle than run a sql script, I tried following;
#!/bin/sh
portStatus=`lsof -ni:5060`
if [ ${#portStatus} -ne 0 ]
then
...
0
votes
3answers
239 views
using sql script in SQL plus in Oracle 11g
I want to import an sql script file to SQL Plus. I found an example and tried following it like this:
SQL>START z:myscript.sql
but it didn't work. The SQL Plus windows just displayed "35" and ...
-1
votes
1answer
114 views
PHP Like Wildcard not working
Im trying to do a select * from x where name LIKE y.I am very familiar with this code which is below.
SELECT * FROM ` arm` WHERE `u_fname` LIKE 'k%'
However, im trying to run this on a sever script ...
2
votes
1answer
129 views
Are there tools that can execute a SQL script one statement at a time?
When I have to run database migration scripts, I tend to exercise a large degree of paranoia and not run the script all at once like dbcli < migration.sql. Instead, I prefer to run the commands ...
0
votes
0answers
111 views
Select from Select vs Multiple Selects
This question is a question of performance between query techniques described below.
The problem is I am trying to visually represent an interactive directory hierarchy as a tree on a webpage. The ...
0
votes
1answer
49 views
Datetime in Apps Script
var dataInicial = '2012-11-01 00:00:00';
var dataFinal = '2012-11-02 22:00:00';
var strOrders = stmt.executeQuery('SELECT orders_id, date_purchased FROM zen_orders WHERE orders_status IN (3, 48, 49, ...
5
votes
1answer
96 views
What are the downsides of creating SQL Server stored procedures in the following manner?
We check in all our database objects into source control as rerunnable scripts (views, functions, triggers & stored procedures etc...)
When it comes time to deploy, we need to ensure that all the ...
0
votes
1answer
78 views
Convert into SQL a Magento Model based script
Is there any way to convert a script that use magento model and collection in a script that use direct SQL.
I know it is possible as quite everything :), The question is about an easy and intuitive ...
0
votes
3answers
137 views
Can I open an application using Selenium?
I'm writing a script for test automation which requires checking the back-end SQL database in the SQL Developer. Is it possible that I do this through selenium? Selenium is a web automation..
If ...
0
votes
2answers
358 views
How to display only the db2 query result via shell script and not the query?
There is probably a very simple solution here, but I am probably not using the right search terms. I have a sql query running in a shell script. I get the results I am looking for, however, I am also ...
0
votes
1answer
331 views
How to escape apostrophe in a db2 sql query, running within a shell script?
I'm trying run a query that will include static columns in its output. The select statement works when I run it via the CLP, but not when I execute it within a shell script:
su - myid -c 'db2 connect ...
1
vote
0answers
44 views
Is it possible to use app script to connect gmail and google sql
I am new to app script. I found a way to connect the gmail api and google sheets which works well, but it's very limited on how many records you can bring in.
Would it be possible to use app script ...
0
votes
1answer
96 views
SQL: Average kids per father
I have to create a sql statement which shows the fathers and their average number of kids.
This is my sql script:
create table breeder (
breederNumber number(3) primary key,
name ...
3
votes
1answer
209 views
SQL: Outer Join and Count
I have to create a sql statement which shows the sheepname and his/her number of brothers and sister.
This is my sql script:
create table breeder (
breederNumber number(3) primary key,
name ...
1
vote
0answers
54 views
How to move SQL info from one DB to another
Im trying to migrate SQL From one script to another, Namely only one part of it, but they use different "Code".
Basically im trying to move information for "States" which is held as a number in side ...
0
votes
0answers
97 views
SMO.Scripter: Help Walking a DependencyCollection
Hi there I am working on automating the process of scripting creates for our SQL Views and object dependencies of the views (namely functions in this case). I don't care about table dependencies. I ...
-1
votes
1answer
63 views
Creating A Script For Dropping and Creating Views of a Database With Dependency Order, Programatically
I just see this topic.
it's very similar to my question.
but i don't want to use any third party for creating the script.
i want to create the script of dropping and creating the views of a database ...
0
votes
0answers
74 views
Timing SQL queries [closed]
I have this table, which holds SQL queries and also information about
when each of these queries should be executed. Then every 5 minutes a
Pentaho job is executed to select only the SQL queries which ...
1
vote
0answers
48 views
PHP / SQL and modularity
I'm currently working on a small home-made PHP framework.
I would like it to automatically manage things like user connection, user groups, and access rights for both users and groups.
However some ...
