Viewing 15 posts - 1,861 through 1,875 (of 2,007 total)
Ken@Work (7/8/2010)
That's great! Thanks,
However you are right.
The main reason I was going with a loop is because I could not get the bulk insert...
July 8, 2010 at 8:17 am
Ken@Work (7/8/2010)
I'll be testing these shortly; it really looks like a good idea...
July 8, 2010 at 7:36 am
Grant Fritchey (7/7/2010)
I'm completely missing the point of the questioner over here. Can someone else give them a hand maybe?
Don't know why he doesn't understand. . . SQL is by...
July 8, 2010 at 5:10 am
Very interesting.
3750
3.336
Microsoft SQL Server 2005 - 9.00.4028.00 (Intel X86)
Oct 20 2008 19:45:04
Copyright (c) 1988-2005 Microsoft Corporation
Developer Edition on Windows NT 5.1 (Build 2600: Service Pack 3)
Big load going...
July 8, 2010 at 3:37 am
CirquedeSQLeil (7/6/2010)
tosscrosby (7/6/2010)
baby got back!I like big butts and I cannot lie
You other brothers might deny
July 7, 2010 at 4:14 am
Does duplicate mean they have to be next to eachother in the source?
July 6, 2010 at 8:05 am
Mr_Bacon (7/6/2010)
Im struggling to explain this so I will try again
Hmmm.
Is this what you're after?
--Test Data
DECLARE @table AS TABLE(
TIME DATETIME)
INSERT INTO @table
...
July 6, 2010 at 7:03 am
DECLARE @weekDay TABLE (
mask INT
, maskValue VARCHAR(32)
);
INSERT INTO @weekDay
SELECT 1, 'Sunday' UNION All
SELECT...
July 6, 2010 at 6:19 am
Mr_Bacon (7/6/2010)
I want to get the current datetime (where DATEDIFF(minute,time, getdate()) ), then minus 240 minutes...
July 6, 2010 at 5:58 am
Hey there. I can't quite understand what you want here. So, check this out
DECLARE @table AS TABLE(
TIME DATETIME)
INSERT INTO @table
SELECT...
July 6, 2010 at 4:23 am
On 2005
DECLARE @test-2 AS VARBINARY(MAX)
SET @test-2 = 0x4858FE25053CA4D236F3D61AE29668BA
SELECT @test-2 AS [VARBINARY]
,MASTER.dbo.Fn_varbintohexstr(@test) AS [VARBINARY SP]
,@@VERSION AS [SQL Version]
/*
VARBINARY ...
July 6, 2010 at 3:22 am
Theo-929802 (7/5/2010)
It really made my...
July 5, 2010 at 9:21 am
arun8006 (7/4/2010)
I have created a package with parameters, the package takes DB name1 and DB name2 and copies DBName1.TblA to DBName2.TableA, And these names are parameters, I have given...
July 5, 2010 at 9:16 am
Excel is a pain to deal with in SSIS. You can get so many stupid meaningless errors that it isn't worth doing if there is any way around it.
For example,...
July 5, 2010 at 8:02 am
Viewing 15 posts - 1,861 through 1,875 (of 2,007 total)