Viewing 15 posts - 4,501 through 4,515 (of 7,502 total)
Bulk will ...
But you recipient table may have a clustering index, needing to reorder the rows.
Will sqlserver retrieve in the same order than you've put it in the table.
Most certainly...
September 16, 2008 at 3:17 pm
the sqlserver service account needs to have access to the backup file location (so don't use a mapped drive, but use unc if possible)
September 16, 2008 at 2:36 pm
IMO it is IO related so I would say 8 pages (i.e. 64KB )
However a table should have a primary key (and most tables have)
Also keep in mind, a unique...
September 16, 2008 at 2:31 pm
Steve Jones - Editor (9/16/2008)
September 16, 2008 at 2:17 pm
I would have performed that leaving the stand alone up and running.
Just install an extra on your cluster env. and then copy the users (ssis task) and move all databases.
Are...
September 16, 2008 at 1:55 pm
Can you post version information of your sqlserver .
Select @@version
or
Select Serverproperty( 'BuildClrVersion' ) as BuildClrVersion
, Serverproperty( 'Collation' ) as Collation
, Serverproperty( 'CollationID' ) as CollationID...
September 16, 2008 at 4:42 am
This one takes way to long !!!
Select RIGHT(F.[Number]+1000000000,9) as TheMissingKey
from ( Select substring(T1.TheMeaningfullKey, 1,4) as YYRR , max(T1.TheMeaningfullKey) as max_TheMeaningfullKey
from @YourTable T1
group by substring(T1.TheMeaningfullKey, 1,4) ) M
cross apply...
September 16, 2008 at 3:47 am
Oh boy, I messed up pretty well :blush:
I'll get back on this if I find some time today ...
For sure this way it will work, although it may take a...
September 16, 2008 at 3:18 am
- Can you connect from the witness to the principal or mirror using management studio and just execute some queries ?
- can you do the same using the witnesses service...
September 15, 2008 at 11:53 pm
it is for a range of dates..
test with this and you'll find its begin and end values.
declare @startdate datetime, @enddate datetime
SELECT @startdate = dateadd(dd, (-6 - DATEPART (dw, getdate())),DATEADD(dd,DATEDIFF(dd,0,getdate()),0))
...
September 15, 2008 at 11:40 pm
Because of the way sqlserver log files work, you can only shrink up to the last chunck in use.
Considering the error you got, I'd say enlarge the log with a...
September 15, 2008 at 11:06 am
- did you change e.g. sqlagent service account recently ?
- did you remove e.g. builtin\administrators from you sql instance before altering sqlagent service account ?
September 15, 2008 at 11:02 am
There can be any number of databases in sqlserver.
You have 4 system databases:
-master
-msdb
-model
-tempdb
(you can have some more in a distribution context)
All other databases are user databases.
So you need to...
September 15, 2008 at 9:42 am
dva2007 (9/15/2008)
Hi ALZDBA,I have found all invalid data. It is there for some reason. so i just need to ignore those particular records.
Thanks for your help.
This is typical abuse...
September 15, 2008 at 8:02 am
Dugi (9/15/2008)
September 15, 2008 at 7:24 am
Viewing 15 posts - 4,501 through 4,515 (of 7,502 total)