Viewing 15 posts - 7,291 through 7,305 (of 7,636 total)
Robert:
All this demonstrates is that the views are binding their output columns when they are saved. This should not be unexpected since, as virtual tables, they have...
March 28, 2008 at 8:05 pm
Well, A) you don't have a choice, you must have a transaction log. and B) just because it is not being used for Restore/recovery does not mean that it...
March 28, 2008 at 6:10 pm
Forcing all data access through stored procedures is the industry best practice for database applications development because of:
1) Security
2) Separability of function
3) Performance
4) Manageability
March 28, 2008 at 4:41 pm
cjudge (3/28/2008)
So, for the edification of myself and others, when is it "right" to use a cursor?
When you have to perform an operation on a number of rows and there...
March 28, 2008 at 4:19 pm
Bob Fazio (3/28/2008)
rbarryyoung (3/26/2008)
You could just use the veiw defined in this article and do a SELECT on it WHERE NAME={your table name}, : http://www.sqlservercentral.com/scripts/tables/62545/
Am I in some sort of...
March 28, 2008 at 3:08 pm
Barkingdog (3/28/2008)
March 28, 2008 at 2:58 pm
The windows account that is executing BCP at the command does not have a windows logon to the SQL server.
March 28, 2008 at 12:33 pm
Try this:
SELECT * from tblA
where tblA.id not in (select tblB.id from tblB)
March 28, 2008 at 10:22 am
Look at the [font="System"]SQL_VARIANT_PROPERTY[/font] function.
March 28, 2008 at 9:51 am
IMHO, views are highly preferrable. As a previous poster noted: only use UDF's if it can't be done with a view.
March 28, 2008 at 9:41 am
You would probably get better response if you moved this to one of the "Working with Oracle" forums on this site.
March 28, 2008 at 9:32 am
Read my prior post: http://www.sqlservercentral.com/Forums/FindPost473248.aspx
In fact, I would recommend reading the whole thread as it has lots of good stuff from other posters.
March 28, 2008 at 8:43 am
george sibbald (3/28/2008)
cheers, I am havng trouble seeing where it shows i/o per file from the gumph but I'll give it a go and report back...............
Rats! Sorry, George, I...
March 28, 2008 at 8:30 am
Dugi (3/28/2008)
ookkk now works fine ...thnx from all of you !!!
You're welcome, let us know how it works out Dugi.
March 28, 2008 at 8:26 am
Matt Miller (3/28/2008)
Also - I could swear that SET ROWCOUNT was "on its way out", i.e. being deprecated. I will have to see if I can dig that up.
It...
March 28, 2008 at 8:25 am
Viewing 15 posts - 7,291 through 7,305 (of 7,636 total)