Viewing 15 posts - 121 through 135 (of 408 total)
karthikeyan (11/6/2007)
so do we need to use the same structure for both the cursors ?Stucture :
Declare cursor
Open cursor
fetch
close cursor
Deallocate cursor
am i correct ?
The example/code above is code for a...
November 6, 2007 at 9:55 pm
Short answer: No
Long answer: Why would you want to? If you're running an O/S other than Windows there are plenty of alternatives to SQL Server, ranging from...
November 6, 2007 at 9:50 pm
Maybe it's time to evaluate the viability of switching over to integrated security?
November 6, 2007 at 9:26 pm
The difference between the two is pretty straightforward:
Server side cursor - data remains on the server until requested by the client application; results are kept on the server and only...
November 6, 2007 at 12:49 am
One of the advantages of stored procedures is that they can/will use the same query plan repeatedly based on the assumption that the stored procedure will be doing pretty much...
November 6, 2007 at 12:29 am
Emmanuel -
What exactly did you do to the windows/AD account? Whether changes are replicated/carried over into SQL server, Exchange, etc. are largely a matter of what changes are made...
November 6, 2007 at 12:21 am
I'm going to go with Brian on this one - MySQL is a serious contender in the database space that will only get better with time and depending on your...
November 5, 2007 at 11:57 pm
Giraffe (don't think I've ever called anyone by that name but here goes) -
One thing not addressed so far is that backup exec, etc. are often used to take daily/weekly...
November 5, 2007 at 11:43 pm
Rudy -
One comment - have you looked at that I/O patterns of your existing databases? CPU/RAM are important, but unless you can load entire databases into memory high speed...
November 5, 2007 at 11:31 pm
Many ETL tools (e.g. SSIS, Informatica) allow you to specify the "batch size" to be used during inserts which causes the tool to send X number of rows to the...
November 1, 2007 at 11:44 pm
Bill -
You don't say whether you're on a 64 bit or 32 bit version of SQL Server... assuming you're on a 64 bit machine you may well need to install...
November 1, 2007 at 11:42 pm
Any chance there is another table of the same name in your schema (e.g. username.table rather than dbo.table)?
November 1, 2007 at 11:14 pm
MARS works with regular c# outside of SQL Server so I would assume that it should work inside as well... can you give us an example of your code?
November 1, 2007 at 11:11 pm
I can think of several instances where versioning a database as described might be useful if done carefully. For example, if you had a series of read only databases...
November 1, 2007 at 11:07 pm
Kathy -
Take a look at a server trigger... you'll probably need something much more than this but here's a real simple one, when I tested using ODBC manager on...
November 1, 2007 at 10:40 pm
Viewing 15 posts - 121 through 135 (of 408 total)