Viewing 15 posts - 2,026 through 2,040 (of 11,678 total)
You can run the SQL Server set-up, but install only the client tools.
August 21, 2014 at 1:46 am
Thanks for the question. I didn't know about this limitation. (because who comes up with a 116 character table name?)
August 21, 2014 at 12:37 am
My avatar is currently gone as well.
Also, the subject line of the notification mail is suddenly full of strange characters.
August 21, 2014 at 12:33 am
Lynn Pettis (8/20/2014)
I have had...
August 21, 2014 at 12:32 am
rocky_498 (8/20/2014)
I am sorry, I am lost, would you mind if you help me with expression?
Come on, a little effort please. John has linked to the documentation of substring. Read...
August 21, 2014 at 12:18 am
At this point, it might be useful to show us some screenshots and maybe some table DDL so we can provide more specific assistance.
August 21, 2014 at 12:16 am
Ells (8/20/2014)
August 20, 2014 at 3:06 am
You need to use a simple trick:
Fname:= LEFT(8,Fname + "--------")
A similar expression can be build for Qty.
August 20, 2014 at 12:36 am
Not out-of-the-box. Maybe if you hack into the CSS/HTML.
August 20, 2014 at 12:34 am
romina (8/19/2014)
I haven't got too far with this. Still struggling to load the data. I am not sure what else to do. It's getting to my nerves.
Any...
August 20, 2014 at 12:28 am
ScottPletcher (8/19/2014)
SELECT *
FROM YourTable
WHERE (SnapshotDate > @from AND SnapshotDate < @to)
OR (SnapshotDate =...
August 20, 2014 at 12:27 am
David Burrows (8/19/2014)
Koen Verbeeck (8/19/2014)
higgim (8/18/2014)
Qira (8/18/2014)
You're helping me sir. Thanks to you. But no...
August 19, 2014 at 5:43 am
Try this:
SELECT *
FROM Table
WHERE DATEADD(HOUR,HourKey,CONVERT(DATETIME,CONVERT(CHAR(8),SnapshotDate),112)) BETWEEN @from AND @to;
You did not provide any table DDL and sample data, so I could not test this query.
August 19, 2014 at 4:49 am
You debug the package in Visual Studio.
When debugging, the package will run locally inside BIDS.
If you want to run the package outside BIDS but not on the server, you need...
August 19, 2014 at 1:47 am
Viewing 15 posts - 2,026 through 2,040 (of 11,678 total)