Viewing 15 posts - 121 through 135 (of 282 total)
Thank you, ALZDBA, that's the reference I mentioned. It seems that the upgrade is possible for Express advanced only to workgroup, standard & enterprise...
December 15, 2009 at 3:35 am
For example
DECLARE @p VARCHAR(max)
SET @p = .....
EXEC your_stored_proc @p
December 15, 2009 at 2:47 am
I'm not sure if I fully understand you.
Does the Windows account exist? If not, create it first.
See also BOL ---> CREATE LOGIN (Transact-SQL)
December 11, 2009 at 2:39 am
Demands too many resources, isn't it? ๐
December 8, 2009 at 10:06 am
Try to add to a SQL trace the Security Audit ---> Audit Statement Permission Event
December 8, 2009 at 8:05 am
Is there any activity involving the objects from "PRIMARY" - such as table inserts, etc ?
December 8, 2009 at 7:33 am
Do you update all the records in one operation? If yes, you should consider updating in small chunks.
Check if any locking occurs, see http://jmkehayias.blogspot.com/2008/12/troubleshooting-locking-in-database.html.
Is there any error message in your...
December 8, 2009 at 7:10 am
Did you, by any chance, create any objects in "PRIMARY"?
December 8, 2009 at 5:39 am
What about "@HeaderTag"?
What do you mean by "update row"?
You can use a "CASE" to update a column depending on a certain variable value. However, I need more info to suggest...
December 8, 2009 at 3:19 am
You're welcome, Jรถrg ๐
However take care of your data when using "guest", see http://www.mssqltips.com/tip.asp?tip=1172.
December 7, 2009 at 11:48 am
You'll need the "guest" user in the other database. See BOL ---> Application Roles and http://www.sqlservercentral.com/articles/Security/sqlserversecurityprosandconsofapplicationroles/1116/ ("Con: Crossing Databases Requires the guest User ")
December 7, 2009 at 6:41 am
Use a cursor to loop through databases or the sp_MSforeachdb (undocumented) procedure, see
http://weblogs.sqlteam.com/joew/archive/2008/08/27/60700.aspx
You can also query the sys.triggers catalog view.
December 7, 2009 at 5:48 am
Try something like
SET @source = '''\\server\xxxxx'''
December 4, 2009 at 12:55 pm
Can you post the error message?
December 4, 2009 at 12:27 pm
Don't forget to add the necessary blanks around FROM and WITH:
ET @RUNNER =
'Bulk Insert #Table
FROM ' + @SOURCE +
' WITH (ROWTERMINATOR = '''')'
For the row terminator - see BOL--->Specifying...
December 4, 2009 at 3:09 am
Viewing 15 posts - 121 through 135 (of 282 total)