Viewing 15 posts - 14,146 through 14,160 (of 26,486 total)
For something a little different, I thought I'd put The Thread back on topic for a bit as I go running back to the TITD (which I haven't visited in...
November 3, 2011 at 10:58 pm
SQLTestUser (11/3/2011)
A and B
A has A.ID,A.Name, A.add, A.lastname
B has
B has B.ID,B.Name, B.add, B.lastname,B.otherfield
and i need to copy B into A with a query but i...
November 3, 2011 at 10:48 pm
KrishDBA (11/3/2011)
Try to compress the table and index which will gain more space and improve performance.
Not possible in SQL Server 2005 and depends on what edition of SQL Server 2008...
November 3, 2011 at 10:15 pm
Well, my daughter Kirisa was just inducted into the National Honor Society ths evening!
November 3, 2011 at 8:16 pm
Welcome to the fold.
When I started with MS SQL Server 6.5, I had 2 MOC classes to get me started. Everything else I learned on my own as our...
November 3, 2011 at 3:48 pm
Kenneth Fisher-475792 (11/3/2011)
Lynn Pettis (11/3/2011)
Tarsha Shannon (11/2/2011)
SSCrazy,
I actually need to enable autogrowth for both the data and log file for each database, the maxsize would...
November 3, 2011 at 2:30 pm
Remember, TempDB is used by all the databases, not just for temporary tables and table variables, but also for queries that require sorting (ORDER BY, DISTINCT, GROUP BY). I...
November 3, 2011 at 1:57 pm
Lowell (11/3/2011)
WHERE [Fixed/Float/Step (Interest Rate Type)] = 42
to avoid that, you want to go...
November 3, 2011 at 1:41 pm
I have to agree with modifying the SSIS packeages to be dynamically configured for SOURCE and DESTINATION. If the only thing changing in the packages is that, nothing else,...
November 3, 2011 at 1:38 pm
Make this change to your FROM clause, see if that gives you what you are looking for.
FROM Calendar LEFT JOIN
TimeTracking ON Calendar.CalendarDate = TimeTracking.Date1 AND TimeTracking.UserName = 'someguy'
This is the...
November 3, 2011 at 1:31 pm
allan.madriaga (11/3/2011)
WHERE ... AND (TimeTracking.UserName = 'someguy')
But when I insert that where clause...
November 3, 2011 at 1:26 pm
Tarsha Shannon (11/2/2011)
SSCrazy,
I actually need to enable autogrowth for both the data and log file for each database, the maxsize would be 150MB for data...
November 3, 2011 at 1:24 pm
Not sure if you got the jist of what others said so I will give another answer.
In your WHERE clause, you have the following:
AND (TimeTracking.UserName = 'someguy')
The WHERE clause...
November 3, 2011 at 1:12 pm
IIRC, the Import/Export Wizard only move data. It will contruct the basic table but does not create any of the indexes, foreign keys, etc.
November 3, 2011 at 1:06 pm
If using BCP or SSIS, be sure to set an apprpriate batch size (number of rows per batch). You don't want the import to run as a single batch.
November 3, 2011 at 12:40 pm
Viewing 15 posts - 14,146 through 14,160 (of 26,486 total)