Viewing 15 posts - 121 through 135 (of 248 total)
Here is the table defination:
Coloumnname Type
idvarchar
part_numbervarchar
erial_novarchar
good_qtyint
bad_qtyint
locationnamevarchar
employeenovarchar
createdbyvarchar
creationdatedatetime
lastupdatedbyvarchar
lastupdatedatedatetime
lastupdateloginvarchar
downloadstatusflagvarchar
downloadbyvarchar
downloaddatedatetime
No Identity columns defined.
October 19, 2010 at 4:03 am
can you provide me the trigger which will collect the spid, loginname, and the host from where it is running, when a deletion occured.
October 19, 2010 at 2:04 am
Yes, we did that but no use.
We have set up the Profiler, but no use.
October 18, 2010 at 10:16 pm
winash (10/11/2010)
Yes, you can rename the instances after installation:
sp_dropserver old_name
go
sp_addserver new_name
go
This works only for the default instance - not for a named instance. Best way to go about renaming named...
October 11, 2010 at 9:21 am
Yes, you can rename the instances after installation:
sp_dropserver old_name
go
sp_addserver new_name
go
Permissions
Only members of the setupadmin and sysadmin fixed server roles can execute sp_addserver.
but its not a good practise to change the...
October 11, 2010 at 7:58 am
vixvu (10/5/2010)
SELECT servername, dbname, CollectionDateTime, datafileinmbs, logfileinmbs, databaseinmbs
FROM temp2
WHERE (CollectionDateTime...
October 6, 2010 at 4:40 am
amarsale (10/2/2010)
write following query in a dataset and then add that dataset to the report parameter named say => ServerName
select distinct servername from temp2
union
select 'ALL'
Add the following query to...
October 4, 2010 at 8:40 am
Abs-225476 (9/30/2010)
Like Veeren4urs said you need to have a dataset which will provide a pick list for the parameters, something like :
select distinct country_name from customers
union all
select 'ALL'
Then...
September 30, 2010 at 12:23 pm
george sibbald (9/28/2010)
September 30, 2010 at 6:05 am
select distinct servername from temp2
UNION
SELECT 'ALL'
Not giving required result.
September 29, 2010 at 8:20 am
Select distinct servername from temp2 is the query in the dataset.
Will below code works?
SELECT distinct servername from temp2
UNION
SELECT 0, 'ALL'
or do I need to do any modifications ?
September 29, 2010 at 8:14 am
Log backups are configurred as part of the logshipping, So I think its not possible to setup a thresh hold or a job in Logshipping configuration.
If it is individual log...
September 28, 2010 at 3:11 am
You might have configured the intervel for log backups in log shiping....try by to set it some what less interval from present interval
This might help you!!!
September 27, 2010 at 12:19 pm
Viewing 15 posts - 121 through 135 (of 248 total)