Viewing 15 posts - 3,871 through 3,885 (of 7,496 total)
Opting for the left join, would mean a vertical split of the data into a number of tables.
As always ... it depends ... mainly on your performance goals, but as...
March 24, 2009 at 11:27 am
Keep in mind SQLAgent has settings (activated by default) for job history.
- Total number of rows
- Max number of rows per job
If you have many jobs, you may be hitting...
March 24, 2009 at 11:22 am
Never mind, I created a carthesian resultset because I didn't include all elements to be compared in the ON-clause of the join.
Now it's working a bit better, but still doesn't...
March 24, 2009 at 6:38 am
I got things working a little bit :crazy:
I have attached the sample data and the needed queries.
The problem is the comparison query never ends ....
This server has +/- 1400 shares...
March 24, 2009 at 1:56 am
You need to specify :
OR new file locations as proposed above.
OR use the 'replace' keyword to overwrite an existing database !
I advise to always specify the target file locations, so...
March 23, 2009 at 2:43 pm
You may want to work with a delete loop of smaller chuncks of your data.
Keep in mind your logfile may grow during this operation.
I don't know where I got this...
March 23, 2009 at 7:17 am
For sqlserver I suggest you use the bigest allocation unit size your windows supports.
It will be the smallest unit of allocation for any file(extend) on that volume.
So the smaller it...
March 23, 2009 at 7:10 am
Thank you Jacob.
I'll give it a try.
Johan
March 23, 2009 at 1:37 am
Kaushalendra Singh (3/22/2009)
folowing this staps
open the notepad
copy
then save the text file at changespassord.bat in c...
March 22, 2009 at 6:16 am
Paul Randal (3/22/2009)
Because I wrote the code.
We don't hear that very often :w00t:
Thank you for the contribution and the urls.
March 22, 2009 at 6:11 am
keep in min to change the dblevel to 90 !!
March 21, 2009 at 8:38 am
Did you try to do it like this ?
Declare @ComputerNamePhysicalNetBIOS varchar(256)
Set @ComputerNamePhysicalNetBIOS = 'Server [' + @@servername + '] Running on - ' + Convert(varchar(128),SERVERPROPERTY('ComputerNamePhysicalNetBIOS') )
Declare @Subject varchar(256)
Select @Subject =...
March 20, 2009 at 1:22 pm
It took me a lot of frustrations but I got it to work :w00t:
-- ...
If object_id('tempdb..#LocalGroupMembers') IS NULL
begin
Create table #LocalGroupMembers ( IdNr int identity(1,1) not null
, [ServerName] varchar(128)...
March 20, 2009 at 7:36 am
Advantages ?
Mainly you save drive letters
and you can use more than 26 logical drives for a single instance of sqlserver
BP say for performance you would need:
- tempdb on a...
March 20, 2009 at 1:25 am
Thanks again 🙂
It gets quit confusing (sheer volume) to find the right corner in the maze to get started. :hehe:
March 20, 2009 at 1:08 am
Viewing 15 posts - 3,871 through 3,885 (of 7,496 total)