Viewing 15 posts - 106 through 120 (of 142 total)
The Cursor operations you see are coming from an API such as ODBC. The Cursor Prepare sets up the query this cursor is executing. @p1 is the Cursor...
November 4, 2008 at 8:54 am
Hi Chris,
You have asked a number of questions and I am not sure there is sufficient information to answer all of them.
If you properly define the referential integrity between...
November 4, 2008 at 8:26 am
Hi Dennis,
Perhaps I am reading too much between the lines but, as I read the original post, I don't think your approach will resolve his issue. His database is...
October 28, 2008 at 8:13 am
If the user can log on with System Administrator rights then you cannot restrict their access to data using either SQL or Windows security features.
You can try some other approaches...
October 27, 2008 at 11:38 am
Actually you can and do it very effectively IF certain conditions are met.
If you want detailed information I recommend you contact the folks at http://www.SQLRx.com. Here is...
September 30, 2008 at 8:16 am
I am not sure I understand all of the issues you face, but I can assure you that you can restore a foreign back up on a local server. ...
September 26, 2008 at 2:26 pm
Hi Terry,
I don't know of anyway to do a direct MSSQL backup to a shared or mapped drive or to a UNC.
You have to do the backup to a local...
September 26, 2008 at 2:18 pm
Hi Bill,
There are a whole lot of depends involved with this issue. First it depends to some extent on what technology you are using for your web app. ...
September 26, 2008 at 1:01 pm
Thanks for the replies. I understand that Red Gate or Idera tools can compress the files, etc. which will reduce the time to copy but I don't have the...
September 23, 2008 at 3:13 pm
There are many many books on this topic. It is probably the most fundamental aspect of database design and has drawn a legion of authors, opinions, hacks, heros, and...
September 23, 2008 at 9:16 am
Well,
First the simple answer. You can use the coalesce function to test a parameter and provide an aternate value if it is null.
Coalesce(@Address2, '') will yield an empty string...
September 23, 2008 at 8:29 am
The first problem is on this line
set @cmd = 'CREATE DATABASE '+@name'
You have a single quote after the identifier but you need an operator so change it to
set...
September 8, 2008 at 9:47 am
Your example makes it look like the Col1 value might be calculated as a function of EmployeeId. Is this true?
September 8, 2008 at 9:14 am
What is the data type of column "ACCT"?
Your problem may be with the comparison
ACCOUNT Where ACCT = 'D00-0219 ' and substring(ACCT,4,1) =...
September 8, 2008 at 8:26 am
Viewing 15 posts - 106 through 120 (of 142 total)