Viewing 15 posts - 1 through 15 (of 20 total)
I created a Group for "RDCB Computer Objects".
In "Properties>Member" entries Name:RDCB01 & RDCB02 how did the get there?
I Inserted into DNS Manager under mysite.com a Host called...
July 9, 2015 at 3:15 pm
How do you find the SQL Login in SQL Server manager?
I have installed "SQL Server 2012" on the first install of "ws 2012". In my RD...
July 9, 2015 at 12:20 pm
In 2012 R2 in server "WIN-1" I have installed a copy of SQL Server 2012. I have added RDSCB into DNS Manager with a IP Address one up from...
July 9, 2015 at 6:40 am
Error code from RD Connection Broker - Configure High Availability: "write permission to sql database"
How do you create "RD Connection Broker having write permission to sql database"?
July 9, 2015 at 6:17 am
I am trying to get my head around this Foreign Key stuff.
I have a table: Employees with a column: DepartmentID.
I have another table: Departments with a column: ID that is...
July 14, 2014 at 5:27 am
I took out one end; and it still does not work.
January 30, 2014 at 5:07 pm
Here is my whole program. Before the If works fine.
CREATE PROCEDURE [IncCondense] (@datetime DATETIME, @latin INT) AS
DECLARE @max-2 INT, @min-2 INT, @col3 INT;
INSERT INTO allcount (datetime,Latin)...
January 30, 2014 at 4:42 pm
OK
Where is the error coming from in CONVERT
from Microsoft site:
CONVERT ( data_type [ ( length ) ] , expression [ , style ] );
data_type is DATETIME
length is 8 because I...
January 29, 2014 at 5:26 am
If I take out"
CONVERT (DATETIME, @datetime , 120);
The error says:
CREATE P*****
Is there something wrong with:
CREATE PROCEDURE [IncMaxallcount] (@Latin INT) AS
Then we can concentrate on CONVERT.
January 29, 2014 at 5:10 am
Error code:
Error -2147217900
Incorrect syntax near the keyword 'CONVERT'.
CREATE P*****
Is there something wrong with:
CREATE PROCEDURE [IncMaxallcount] (@Latin INT) AS
DECLARE @max-2 INT, @min-2 INT, @col3 INT,@datetime DATETIME;
January 29, 2014 at 4:55 am
I tried to use the keyword "CONVERT" to get form "120" or
yyyy-mm-dd hh:mm:ss
The time is in 24hour time.
SET @datetime = Getdate();
CONVERT (DATETIME, @datetime , 120);
It did not work. Any suggestions?
from
January 29, 2014 at 4:27 am
Sorry,
Will this work:
DECLARE @datetime DATETIME;
SET @datetime = Getdate();
CONVERT (@datetime , 120);
January 28, 2014 at 6:06 pm
Is this how you would do it?
DECLARE @datetime DATETIME;
SET @datetime = Getdate();
CONVERT (datetime , 120);
January 28, 2014 at 5:49 pm
Could conditional do something like this:
CREATE PROCEDURE [IFTHEN] AS
DECLARE @max-2 INT, @min-2 INT;
@min-2=MIN(idt)
,@max=MAX(idt)
FROM test;
BEGIN --PROC
SELECT CASE ((@max-@min)>50000)
THEN
---Execute more SQL commands---
ELSE
---Execute some more SQL...
January 27, 2014 at 1:27 pm
I went to my 1and1 server. Clicked on MS SQL then Stored Procedures. Selected New Procedure. I copied and pasted the SQL code into the box. Hit Create.
Error:
...
January 27, 2014 at 6:10 am
Viewing 15 posts - 1 through 15 (of 20 total)