Viewing 15 posts - 616 through 630 (of 961 total)
Frankly I think the trend has recently shifted in favor of MS SQL. Earlier MS didn't have a strong contender in the DB space unlike Oracle. However more companies are...
August 7, 2011 at 1:01 am
Jeffrey Williams-493691 (8/6/2011)
That is the other thing I...
August 7, 2011 at 12:56 am
Nope , Do you get any errors when BIDs Hangs.
You might want to reinstall MSXML 6.0
Are you using a named query or are you simply referring to the table in...
August 7, 2011 at 12:49 am
it might be useful if you give an example such as
Before : dbo.getallobjects.storeprocedure.sql
After : sbo.getallobjects.sql
The naming convention your using looks like the one VS uses when creating objects in...
August 7, 2011 at 12:42 am
There are a number of ideas mentioned in the ebook "How to become an Exceptional DBA".
Its a good place to start on knowing what it takes.
August 6, 2011 at 4:06 am
Am not sure if this is what your looking for , but most case the connection would have something like
dbconn.Open()
and
dbconn.close()
if an error is thrown due the the db...
August 5, 2011 at 3:07 am
How would you like the below scenario to work
Insert a row with id 1
Insert a new row with select max( id ) +1 hence the new id =...
August 4, 2011 at 6:13 am
I have had to do this kind of activity in the past at which point I restored the entire DB on a different box and queried out the data from...
August 4, 2011 at 5:39 am
It would be better to create a SSIS package to archive the data you want or You could simply create a replica table on the same server and have a...
August 4, 2011 at 5:33 am
Like grant said the application has to initiate a new connection , however database mirroring allows your to failover automatically to another server in case the db is down ,...
August 4, 2011 at 5:26 am
There are a number of tools that help perform Admin activities overall ( including backups and audits etc) there are some even specific to SQL Server security but I haven't...
August 4, 2011 at 5:24 am
You can use identity insert ON if you want an exact replica of the row from the second db , however if you want to insert just the data without...
August 4, 2011 at 5:14 am
http://msdn.microsoft.com/en-us/library/ms190276.aspx
http://msdn.microsoft.com/en-us/library/ms186992.aspx
the above two article explain how operators work. You need to group operators using brackets to make sure you get the required results.
e.g
GO
SELECT ProductID, ProductModelID
FROM AdventureWorks2008R2.Production.Product
WHERE ProductModelID = 20 OR...
August 4, 2011 at 5:11 am
stewartc-708166 (7/29/2011)
have you tried charindexas part of a substring SUBSTRING (Transact-SQL)
Charindex and substring together will get what you need.
charindex finds the position of the letter your lookingfor , (in...
July 29, 2011 at 4:48 am
Brad Mcghee cover certification and its role in a DBA's career in this ebook how to become an exceptional DBA. You should probably go thru it to give you n...
July 29, 2011 at 4:45 am
Viewing 15 posts - 616 through 630 (of 961 total)