Viewing 15 posts - 12,001 through 12,015 (of 14,953 total)
You could split it that way, but I can't think of what it would gain you. What's the reasoning behind that idea?
If you want to move data from one...
September 11, 2008 at 2:25 pm
The spreadsheet would allow me to build some tables. Create scripts would be better, but that could work.
Have you tried the suggestions I already gave you? What result...
September 11, 2008 at 11:45 am
homebrew01 (9/10/2008)
Nice reply. GSquared !!Wouldn't simply replacing the DELETE with TRUNCATE help a tiny bit ?
It would reduce the logging a bit. Might gain a couple of seconds out...
September 11, 2008 at 11:41 am
TheSQLGuru does have a point. If you go with clustering, it's complex and easy to get wrong. Mirroring and log shipping are pretty easy to set up if...
September 11, 2008 at 11:39 am
A triangular join is generally (loosely) an inline query that references the outer query and more rows, in such a way that it has to query all/most of the outer...
September 11, 2008 at 11:36 am
declare @Alpha char(26)
select @alpha = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
select 1
while @@rowcount > 1
;with Dupes (Row, Col5) as
(select row_number() over (partition by col5 order by col5),
col5
from dbo.MyTable)
update Dupes
set Col5 = Col5 + substring(@alpha, row-1,...
September 11, 2008 at 8:35 am
wildh (9/11/2008)
September 11, 2008 at 8:25 am
I think the usual way to do that is to attach the image as a file to the e-mail and then include an HTML reference to the attachment. I...
September 11, 2008 at 8:22 am
The Unpivot operator will do that. There are directions and examples in Books Online.
September 11, 2008 at 8:20 am
How you do that depends on the end result you want.
For example, today is 11 Sept 08. That could be represented in bigint as 20080911, or it could be...
September 11, 2008 at 8:20 am
williamminor (9/11/2008)
try adding brackets around each item[CSWReportDatabase].[CSWReportDatabase].[dbo].[package_lists]
-WM
That's only necessary if the names don't conform to the basic naming conventions. Won't solve the problem here.
September 11, 2008 at 8:16 am
To my understanding, they didn't actually perform any collisions yesterday, they just fired some particles around in a circle to make sure it was working.
Plus, if it goes wrong in...
September 11, 2008 at 8:13 am
You're missing the schema between the database name and the table. It's probably dbo.
September 11, 2008 at 7:10 am
For what you're doing, I would definitely look into either SSIS, or using a third party app like RedGate's Data Compare or ApexSQLS's Diff. Both of those apps are...
September 11, 2008 at 7:03 am
In compatibility 80, you're very specifically operating the database as if it were on SQL 2000. That's the whole point of the compatibility level.
September 10, 2008 at 12:30 pm
Viewing 15 posts - 12,001 through 12,015 (of 14,953 total)