Viewing 15 posts - 31 through 45 (of 919 total)
All these variables:
@type varchar(10),
@tempEmployeeCount INT,
@CurrentEmployeeID varchar(10),
@LastName varchar(20),
@FirstName varchar(15) ,
@VpOfOpName varchar(20),
@Date as varchar(12)
you declared as part of the parameter set which must be supplied when you invoke the...
October 9, 2014 at 4:41 pm
I tried to do a life log, but I ran out of space and had trouble rolling back. So now I'm suspect.
October 1, 2014 at 4:30 pm
The empty string ('') is NOT NULL so the first condition is true.
September 9, 2014 at 7:04 pm
Encryption requirements?
Usage pattern (OLTP, DW, reporting, etc.)?
August 6, 2014 at 4:20 pm
D'oh. I type too slowly...
August 6, 2014 at 4:17 pm
Blocking on the system tables would be my first guess. Did you check for blocking locks?
August 6, 2014 at 4:16 pm
The other thing you are leaving out is the vendor ecology. RDBMS technology and SQL had great success partly because it provided a consistent data manipulation method across multiple...
August 6, 2014 at 11:50 am
And another clarifying question:
Can a value change twice in a day such that there will be 2 values of an item for a given day? If so, how will...
July 28, 2014 at 5:20 pm
Only reason I can think of for this would be you're either pointing at the wrong db or the wrong schema. I've never seen an alter successfully run but...
July 9, 2014 at 9:31 am
A variable or a column with data type char(10) should give you 10 spaces. If it's not, then at some point in your code or in the trigger it...
June 24, 2014 at 4:15 pm
Did you upgrade the sql client software on the web server?
May 29, 2014 at 2:39 pm
Under the Tools>Options menu, you have 'script dependent objects' turned on, I think.
April 9, 2014 at 3:43 pm
Roger Zelazny - Lord of Light and/or Creatures of Light and Darkness. The Amber series would be interesting, but I can't imagine it would maintain interest over the number...
February 28, 2014 at 10:23 am
Don't know about the date, but this looks like it puts in the control characters correctly:
alter PROCEDURE dbo.Test
(
--@Dt DATETIME = '20140201'
,@tab VARCHAR(1)...
February 26, 2014 at 5:52 pm
Don't have a place to test this right now but if setting DATEFIRST impacts the result, that could be why it might be considered non-deterministic.
February 26, 2014 at 4:08 pm
Viewing 15 posts - 31 through 45 (of 919 total)