Viewing 15 posts - 3,421 through 3,435 (of 7,503 total)
These topic options were described when SSC switched/upgraded the forum software back in the days. 😉
On the other hand, if you want to print or copy the full topic at...
October 2, 2009 at 7:49 am
Fred Zimmerman (10/1/2009)
1) What do you set your Recovery to on your databases backed up.
2) Aside from stated Diff backups you do, do you...
October 2, 2009 at 2:15 am
So, for a "classic" tally table ( i.e. start with 1 increment by 1 ), Pauls solution performs best.
If you actually want a dynamic tally table ( i.e. start...
October 2, 2009 at 2:00 am
Indeed strange findings.
I think the best way to tackle this problem is to use sqlprofiler to capture the load launched on both engines (FULL).
Especially check the connections settings to actually...
October 1, 2009 at 8:19 am
My guess your alias references are resulting to these strange findings !
Did you try using aliasses for both objects
DECLARE @helperStr8000 AS VARCHAR(8000)
SET @helperStr8000='bcp "SELECT * FROM dbname..tablename x
WHERE EXISTS...
September 30, 2009 at 7:06 am
if you use "dirty reads" you allow your applications to use uncommitted data !
No complains are accepted for that ! :unsure:
Cursors can cause the need to be materialized in...
September 30, 2009 at 7:01 am
Start here :
- Gails very nice summary: http://www.sqlservercentral.com/articles/64582/
- Books online topic "Implementing Restore Scenarios for SQL Server Databases"
You really need :
- Full backup (= snapshot of your database)
- log backup...
September 30, 2009 at 6:50 am
Igor Marchenko (9/29/2009)
ALZDBA,Could you please elaborate on how you save and analyze cache? Do you save contents of master..syscacheobjects or corresponding DMV? What kind of analysis do you perform?
Thanks,
Igor
I would...
September 30, 2009 at 1:44 am
the urls both state on 32-bit win2003 std edtn : 4Gb is the max.
September 29, 2009 at 6:19 am
it depends:
- 32 bit 4GB max
- 64 bit 32GB max
http://technet.microsoft.com/en-us/library/cc758523%28WS.10%29.aspx
or
September 29, 2009 at 5:42 am
Start with properly design of your own tables !
DON'T use varchar(max) for everything ! Only use it if needed (>8000 bytes to be stored in a single column)
September 29, 2009 at 5:04 am
Is this a single shot operation ?
Use the import / export data wizard in enterprise manager/instance/database/tables rightclick on a table object.
Check out DTS in books online
September 29, 2009 at 5:02 am
Steve already couvered the DRP part.
Just to add a little bit to Keep in mind:
- SQL2005 has many features "off by default" on a fresh install. If you perform...
September 28, 2009 at 11:56 pm
Nic-1052152 (9/28/2009)
I have two front ends for my database; an old one in access and a newer one in vb.net.
I have a script which will script many new clients...
September 28, 2009 at 10:29 am
Be sure to double check your sql2000 settings (config + security) before starting the upgrade.
In case of DRP, you may have to start from sql2000 again, so if you don't...
September 28, 2009 at 10:21 am
Viewing 15 posts - 3,421 through 3,435 (of 7,503 total)