Viewing 15 posts - 31 through 45 (of 54 total)
few jobs run tsql while few others are cmdexec or SSIS.
Take a look at the SSIS packages to see what are they doing. To do that, create a new BI...
May 29, 2009 at 7:37 am
The SQLServer tools that we need are included in Microsoft Visual Studio 2005
This is true, but we're talking of the express edition, which have some limitations that you don't want...
May 29, 2009 at 6:32 am
Hi there,
Based on my experience, having local admin rights to the server is really important, but that does not mean that you should connect anytime you want to perform things...
May 19, 2009 at 6:39 am
Hi,
First of all, why are you trying to create a database with the datafile located at C:\Documents and Settings\morase\Desktop\Copy of BPO Portal\BPO Portal\BPO Portal\App_Data\FinancialControl.mdf ??
Don't do that. Set the path...
May 19, 2009 at 6:27 am
First of all, welcome aboard !!
I think you should start with some basic admin book, like the one you get from the official training, to get used to some concepts....
May 19, 2009 at 6:18 am
Hi,
you can use the following.
INSERT INTO [Mydb].[dbo].[Departments]
([DeptID]
,[DeptName]
,[Manager])
select 1,'Human Resource','Frank'
union all
select 2,'Management','Franklin'
union all
select 3,'something','something'
Cheers
May 14, 2009 at 5:29 pm
Hi CrazyMan,
I think that the solution provided by FelixG is the one because you'll have the distinct combination.
Based on the example you provide, you have 3 different values in Age...
May 13, 2009 at 11:23 am
Hi,
The answer is no. The jobs that had a start time that fits on the server downtime will not be executed upon the server start.
Cheers
May 13, 2009 at 11:13 am
Hi,
If I correctly understood what you want to achieve, I think you can perform that using SQL, which I think will be better than deploying a CLR.
declare @value1 bit
declare @value2...
May 12, 2009 at 2:50 pm
Hi,
you should deploy it only on the active node, no need to deploy it on every node.
cheers,
Alejandro
May 9, 2009 at 4:25 pm
Hi there,
the simplest way is replacing this line
insert into @dbs
select name from sys.databases order by name
with this one
insert into @dbs
values ('Name_of_DB')
The nicest way will be removing...
April 30, 2009 at 5:37 am
I agree with TheSQLGuru about the lack of information to correctly guide ritesh, but also think that tempdb comments are important because of the same reason: didn't provide us with...
April 29, 2009 at 10:24 am
Yeap, follow Chris advice and separate everything. Also consider having 1 datafile in tempdb per processor (this is for avoiding bottlenecks on the tempdb).
If you're server is Win 2003 or...
April 28, 2009 at 6:53 am
Hi ritesh.saluja,
also if you're managing tons of inserts per minute, consider creating one or more filegroups on different disks system and put those tables on them. That will reduce IO...
April 28, 2009 at 6:17 am
DMC is right, when you connect to the VPN then your default gateway don't know how to route you to the test environment. I suggest you use something like "route...
April 22, 2009 at 11:01 am
Viewing 15 posts - 31 through 45 (of 54 total)