Viewing 15 posts - 496 through 510 (of 583 total)
Please look at this article on how to post data to get the best help. The more effort you put into forming a question, the more people will be willing...
April 29, 2009 at 3:12 pm
I am not sure but it looks like the behavior of the newer version is correct. In the 9.0.3310 by rounding up the value, it changes the data which...
April 21, 2009 at 3:32 pm
Works great! Exactly what I was looking for. Thanks.
April 21, 2009 at 10:10 am
the table in question can only have three possible values in the type column. These values are status, date, and time. And I an trying to get the old value...
April 20, 2009 at 5:31 pm
Hey JT, are you sure you are getting the correct results. In my testing it appears DATABASEPROPERTYEX([NAME], 'Status') only returns data from local server not the remote linked server.
April 9, 2009 at 10:40 am
Is there anything else that is running at the same time as this update?
March 31, 2009 at 2:11 pm
Which special characters are you looking for? Please read following link and post sample tables and data.
http://www.sqlservercentral.com/articles/Best+Practices/61537/ [/url]
March 25, 2009 at 7:55 am
Look in sys.databases. create_date is in this system view.
March 25, 2009 at 7:47 am
I do believe you answered your own question. The error states that only sysadmin can specify parameter but the developer having the issue is not in sysadmin role.
March 18, 2009 at 2:56 pm
I am currently doing something similar but getting more then just collation and I have achieved by:
- Choosing one server...
March 17, 2009 at 10:18 am
Thanks for suggestion, I have added lines (editted code in original post,changes in bold) that get database name out of the header and apply that to the database being restored....
March 6, 2009 at 9:50 am
I would see why you couldn't. As long as you are only reading from the database anything should work.
February 16, 2009 at 6:08 pm
I assume the "Portal software" you refer to has a persistent connection to the read-only database which would make it in use all the time. Thus, If you don't disconnect...
February 16, 2009 at 8:35 am
You can user CTE(http://msdn.microsoft.com/en-us/library/ms190766(SQL.90).aspx) instead of temp tables.
with installed as(SELECT DISTINCT Computername
FROM dbo.tblSoftware
WHERE tblSoftware.softwareName = 'App1'),
updates as(SELECT DISTINCT Computername
FROM dbo.tblRegistry
WHERE Regkey = 'Regkey1'
OR Regkey = 'Regkey2')
SELECT DISTINCT Computername
FROM installed
WHERE NOT...
February 13, 2009 at 2:06 pm
Ok, when you connect to the share on the primary server from the secondary, Do you have to supply a username/password of a user on the primary domain? If so,...
February 12, 2009 at 8:41 am
Viewing 15 posts - 496 through 510 (of 583 total)