0
votes
2answers
35 views
PostgreSQL create table if not exists
In a MySQL script you can write:
CREATE TABLE IF NOT EXISTS foo ...;
... other stuff ...
and then you can run the script many times without re-creating the table.
How do you do …
0
votes
1answer
36 views
iPhone create folder inside documents folder
Hello,
i just want to create new folders in the documents folder of my iPhone app
does anybody know how to do that ?
appreciate your help!
0
votes
1answer
23 views
Why does this slides-creating loop in VBA Power Point not work?
Hello,
I have tried to create this script that would create 10 empty slides, but it doesn't work for some reason:
Sub CreatingSlides()
'
Dim oPresentation As Presentation
Set oP …
0
votes
1answer
20 views
ASP.NET C#: Create sub-folder in another website on same server
I am in the need to create sub-folders within another website on the same server as the requesting website. How do I go about doing this?
I have tried Server.MapPath(path) but it …
0
votes
2answers
27 views
update each row in a procedure
I have the following data in a table TABLE1
DOCUMENT ------ FIELD1
12345
23456
34567
45678
98765
i have the following data in a view VIEW1
DOCUMENT ---- BUS
12345 ------------ …
2
votes
7answers
202 views
How to create an empty file in the command line?
How to create an empty file in the DOS/Windows command line?
I tried:
copy nul > file.txt
but it always displays that a file was copied.
Is there any other method in the standa …
0
votes
1answer
31 views
Assemblies mysteriously loaded into new AppDomains
I'm testing some code that does work whenever assemblies are loaded into an appdomain. For unit testing (in VS2k8's built-in test host) I spin up a new, uniquely-named appdomain pr …
0
votes
1answer
27 views
Create Select clause within Stored Procedure?
I have two tables coming which has data from two different systems. I need to reconcile the data in these two tables
The column mapping needs to be made configurable.
E.g.:
Tab …
0
votes
1answer
58 views
Create a SQL Server database on a remote machine mdf file path issue
I'm trying to create a MS Sql Server database on a database instance running on a remote machine. When I'm doing so I need to be able to specify the path to the database (.mdf) fi …
0
votes
2answers
54 views
Creating files on AppEngine
I'm trying to store some data in a binary file:
import os, pickle
o = some_object()
file = open('test', 'wb') #this causes the error
pickle.dump(o, file)
file.close()
I get thi …
0
votes
3answers
36 views
CREATE DATABASE using file in default path
I want to create an SQL script that creates a database. Right now, I have this:
CREATE DATABASE [Documents] ON PRIMARY
( NAME = N'Documents', FILENAME = N'Documents.mdf')
LOG …
-2
votes
1answer
72 views
Help me modify a sorting script! [closed]
A friend of mine recently wrote a script for me that would move files with the specified names into a specific folder. For example, the files 07852AAE.E, 07852AAE.N, and 07852AAE.Z …
0
votes
2answers
44 views
How can I create a new user for a sharepoint site
I am trying to create users that I can add to groups on my site, but I just can't figure out how to create a new user, all I can find is how to add an already existing user.
Please …
0
votes
3answers
117 views
duplicacy problems while creating a sudoku puzzle
I am trying to create my own normal 9x9 sudoku puzzle.
I divided the problem into two parts -
creating a fully filled sudoku, and
removing unnecessary numbers from
the grid
R …
1
vote
2answers
296 views
Create table from existing DataTable/Dataset data with ADO.net ?
I need to create two tables.
The first one I can get via database with a command. No sweat.
The second one is built from the first one with nested SELECT
statements, JOINs, and o …
