Viewing 15 posts - 5,386 through 5,400 (of 26,490 total)
forrest77 (4/28/2015)
Here is the DDL table
ALTER FUNCTION [dbo].[ADMC_DDL_GetUniqueEditLog]()
RETURNS @EditLog TABLE(
Id INT NOT NULL
,EditDate DATETIME NOT NULL
,PlanId INT NOT NULL
,TransId INT NOT NULL
,EntityId INT NOT NULL
,QtyPrior FLOAT NULL
,QtyAfter FLOAT NOT...
April 28, 2015 at 10:20 am
forrest77 (4/28/2015)
I included some data from the EditLog table in previous post.
I get the following error when creating the function
Msg 4514, Level 16, State 1, Procedure ADMC_DDL_GetUniqueEditLog, Line 25
CREATE...
April 28, 2015 at 10:10 am
Nevyn (4/28/2015)
Sergiy (4/27/2015)
By all means - NO!
Compare E8:AB:... and e8-ab-...
These are completely different strings, but they present the same MAC address.
Just another example of...
April 28, 2015 at 10:06 am
Really need the DDL for the table(s), sample data as insert into statements, and expected results based on the sample data.
April 28, 2015 at 9:57 am
charipg (4/28/2015)
April 28, 2015 at 9:52 am
peterausger (4/28/2015)
following is what i want..
2323 (2323 should have childs like 23231000,23232,23233000,232390 as its child))
23231000 ( should have nothing)
23232 (should have 232321,232329 as its child)
23233000(should have 23239010,23239020,23239030,23239040,23239090 as its...
April 28, 2015 at 9:49 am
forrest77 (4/28/2015)
Here is the DDL table
ALTER FUNCTION [dbo].[ADMC_DDL_GetUniqueEditLog]()
RETURNS @EditLog TABLE(
Id INT NOT NULL
,EditDate DATETIME NOT NULL
,PlanId INT NOT NULL
,TransId INT NOT NULL
,EntityId INT NOT NULL
,QtyPrior FLOAT NULL
,QtyAfter FLOAT NOT...
April 28, 2015 at 9:44 am
Look carefully at the code below. You have two columns in the select list in the declaration of your cursor.
DECLARE Dropuser_Cursor CURSOR FOR
Select
dbname,
...
April 28, 2015 at 9:32 am
I think I see it now:
create table test222(sid bigint, scode nvarchar(50), parentid bigint, sname nvarchar(50));
insert into test222 values (1, '2323', 0, 'iam a boy');
insert into test222 values (2, '23231000', 1,...
April 27, 2015 at 3:21 pm
peterausger (4/27/2015)
create table test222(sid bigint, scode nvarchar(50), parentid bigint, sname nvarchar(50))
insert into test222 values (1, '2323', 0, 'iam a boy')
insert...
April 27, 2015 at 3:04 pm
SQLRNNR (4/27/2015)
Lynn Pettis (4/27/2015)
Ed Wagner (4/27/2015)
Grant Fritchey (4/27/2015)
Hey Steve! Where did you get pictures of my cousin?I never thought of you as having a strong feline side. 😀
How many people...
April 27, 2015 at 1:41 pm
neeraj-344433 (4/27/2015)
I certainly have no intention to ignore anybody who is trying to help me. If thats the message being conveyed, my apologies.
So lets start from beginning ...
April 27, 2015 at 1:14 pm
And I can't see any way to speed up a query that always returns 100% of the data (columns and rows). Well, you could put the database on SSD...
April 27, 2015 at 12:22 pm
Ed Wagner (4/27/2015)
Grant Fritchey (4/27/2015)
Hey Steve! Where did you get pictures of my cousin?I never thought of you as having a strong feline side. 😀
How many people does it take...
April 27, 2015 at 12:17 pm
neeraj-344433 (4/27/2015)
April 27, 2015 at 11:00 am
Viewing 15 posts - 5,386 through 5,400 (of 26,490 total)