Viewing 15 posts - 11,491 through 11,505 (of 26,486 total)
David Webb-200187 (6/6/2012)
June 6, 2012 at 11:39 am
I have to ask, why are you using SQL Server to stop and start a windows service?
June 6, 2012 at 11:23 am
Eric M Russell (6/6/2012)
Steve Jones - SSC Editor (6/6/2012)
Revenant (6/6/2012)
June 6, 2012 at 11:15 am
To answer the original question for this thread, it must be yes.
blampe (6/6/2012)
June 6, 2012 at 10:50 am
blampe (6/6/2012)
June 6, 2012 at 10:47 am
Krasavita (6/6/2012)
Thank you, I couldn't find information if I need additional lisense for creating another instance on enterprise version
Slightly confused here, did you find this info on the link I...
June 6, 2012 at 10:43 am
rhonda.klass (6/6/2012)
Forgot to mention... this is for oracle and the front end I'm using PL/SQL developer....
You'd be better off asking this on an Oracle forum, then, since this is...
June 6, 2012 at 10:34 am
The following code runs successfully on my system:
create table encrypt_table
(
table_id int identity,
sch_name varchar(50),
table_name varchar(50),
active BIT
)
create table encrypt_table_columns
(
table_id int,
column_name varchar(50),
active BIT
)
GO
create procedure insert_table_column(@schema_name varchar(128), @table_name varchar(128), @column_name varchar(128), @active BIT)
as
declare @id...
June 6, 2012 at 10:17 am
Also, looks like your insert into the first table won't really work either.
June 6, 2012 at 10:10 am
blampe (6/6/2012)
June 6, 2012 at 10:09 am
TravisDBA (6/6/2012)
June 6, 2012 at 10:04 am
bpowers (6/6/2012)
What...
June 6, 2012 at 9:52 am
Look over the following. One thing you needed was to separate the table creation from the creation of the procedure by inserting GO before the CREATE PROCEDURE. I...
June 6, 2012 at 9:43 am
Viewing 15 posts - 11,491 through 11,505 (of 26,486 total)