Viewing 15 posts - 1,771 through 1,785 (of 2,007 total)
keywestfl9 (8/19/2010)
and then i have a textbox with the expression as below in the page header
FormatNumber(round(Parameters!PlanNo.Value,1),0,-1,-1)
i get #error
Can anyone tell me what i am doing...
August 24, 2010 at 4:11 am
Sample tables and data please.
Read the link in my signature for how to best display this.
August 24, 2010 at 3:58 am
--Sample table
DECLARE @TABLE AS TABLE(
[RID] INT,
[EMID] INT,
[In Time] DATETIME,
[Out Time] DATETIME)
--Insert sample data
INSERT INTO @TABLE
SELECT 62, 12, '2005-08-18 06:02:00', '2005-08-18 06:31:00'
UNION ALL SELECT 63, 12, '2005-08-18 06:31:00', '2005-08-18 06:33:00'
UNION ALL...
August 24, 2010 at 3:51 am
Failing that, would something like this do?
SELECT 'INSERT INTO yournewtable(Col1,Col2,Col3) SELECT '
+ Quotename(col1, '''') + ','
+...
August 23, 2010 at 6:30 am
I think my problem is that it's 2008 and I'm not able to connect to my 2008 box to test it today 😛
August 19, 2010 at 9:44 am
thisisdeepthy (8/19/2010)
I migrated the data from these flat files in to another flat file destination using SSIS, but...
August 19, 2010 at 8:33 am
Is there a reason you can't do this in SSIS?
August 19, 2010 at 8:09 am
August 19, 2010 at 7:57 am
Ummm, :blink:
DECLARE @TABLE AS TABLE(
A INT,
B INT)
INSERT INTO @TABLE
SELECT 1,1
UNION ALL SELECT 0,1
UNION ALL SELECT 1,0
SELECT a,
b
FROM @TABLE
WHERE ( CASE
...
August 12, 2010 at 8:38 am
I went with this: -
--DROP FUNCTION [dbo].[Split]
--GO
--Split function
CREATE FUNCTION dbo.Split (@sep char(1), @s-2 varchar(512))
RETURNS table
AS
RETURN (
WITH Pieces(pn, start, stop) AS (
...
August 12, 2010 at 4:12 am
Chi Chi Cabron (8/11/2010)
Inserting into #Table2 with a subquery causes the computed column to be rounded off to the nearest whole number.
If I...
August 11, 2010 at 9:41 am
EasyBoy (8/11/2010)
I have attach the document in excel file with desciption.I hope that would be k this time.
Thanks a lot
Nope.
Please read the article[/url] that ColdCoffee pointed you at and supply...
August 11, 2010 at 8:50 am
adonetok (8/11/2010)
1)select count(*) from order
2)select count(OrderID) from order (OrderID is primary key)
I tested in 3894000 records table but both them are done...
August 11, 2010 at 8:34 am
OCTom (8/11/2010)
August 11, 2010 at 7:38 am
Viewing 15 posts - 1,771 through 1,785 (of 2,007 total)