Viewing 15 posts - 13,636 through 13,650 (of 26,486 total)
Looks to me like you need to add additional space to your system.
March 22, 2012 at 8:45 am
michael.albert (3/22/2012)
March 22, 2012 at 7:40 am
Well, you would have gotten tested code if you took the time to read and follow the instructions in the first article I reference in my signature block below regarding...
March 22, 2012 at 7:33 am
Are you trying to use this? From the small fragment provided you are not going to get very good answers, just shots in the dark.
March 22, 2012 at 12:12 am
When you run the SSIS package in BIDS, is this on the server itself or on a separate PC (workstation)?
March 21, 2012 at 9:34 pm
Let's start by having you read the two articles I reference below in the 5th line of my signature block regarding Cross Tabs and Pivots.
March 21, 2012 at 8:49 pm
Chrissy321 (3/21/2012)
Someone around here has something in their signature that says something like don't use code you don't understand. I don't understand the split function although I bet...
March 21, 2012 at 8:11 pm
ColdCoffee (3/21/2012)
Lynn Pettis (3/21/2012)
Here is another way to do it:Here is the dbo.DelimitedSplit8K function:
Lynn, as we know the exact positions of the hyphen, i dont really think we would need...
March 21, 2012 at 7:11 pm
ColdCoffee (3/21/2012)
Lynn Pettis (3/21/2012)
Here is another way to do it:Here is the dbo.DelimitedSplit8K function:
Lynn, as we know the exact positions of the hyphen, i dont really think we would need...
March 21, 2012 at 7:10 pm
I'd say it depends on how the CASE function is being used. In this case it is being used on the right side of the equality condition and will...
March 21, 2012 at 5:39 pm
Dumb question, is the SQL Browser service running on the server?
March 21, 2012 at 5:30 pm
Here is another way to do it:
CREATE TABLE #Test (TestColumn varchar (24))
INSERT INTO #Test
SELECT '123-3456-789-987-65' UNION
SELECT '223-13446-789-987-65' UNION
SELECT '323-16-789-987-65' UNION
SELECT '423-45454516-789-987-65'
select * from #Test;
select
t.TestColumn,
...
March 21, 2012 at 5:27 pm
If you look at the part I made bold, the query timed out. With that I would say you need a longer timeout period for this to work. ...
March 21, 2012 at 5:19 pm
How about giving this a try:
SELECT
t.ProductionDate,
t.Shift,
t.LineNumber,
t.Cart,
t.CavityPosition,
t.ProgramNumber,
...
March 21, 2012 at 5:07 pm
First, if you look at the code below again, you will find a logic error:
IF @now BETWEEN '06:40:00' AND '14:39:00'
SELECT ProductionDate, Shift, LineNumber, Cart, CavityPosition, ProgramNumber, PartNumber,Cavity
FROM tblTransactiondetail WHERE Shift...
March 21, 2012 at 4:37 pm
Viewing 15 posts - 13,636 through 13,650 (of 26,486 total)