Viewing 15 posts - 256 through 270 (of 644 total)
ssurekha2000 (5/16/2012)
if (@lused = '')
...
May 16, 2012 at 4:41 am
kwe477 (5/15/2012)
An here's how that's done.:-)Right click SP -> Script Stored Procedure as -> Create to -> New Query Editor Window
This way you will be able to script only one...
May 15, 2012 at 5:44 am
ßhavin (5/12/2012)
I have imported Tables & views from old to new server....
May 12, 2012 at 6:35 am
Simha24 (5/11/2012)
DECLARE @fileName VARCHAR(50)
DECLARE @name sysname
DECLARE @sqlcmd VARCHAR(1000)
SET @fileName = 'D:\data'
DECLARE table_Cursor CURSOR FOR
SELECT name FROM sys.objects where type='U';
OPEN table_Cursor;
FETCH NEXT FROM...
May 11, 2012 at 5:02 am
justoti (12/29/2011)
I am testing the connection between 2 SQL server express 2008 instances: one on win7 32bit the other win7 64bit. Windows authentication, same domain. The user is th...
May 11, 2012 at 3:52 am
manju.ccc (5/10/2012)
There is a trigger and it update another table.the error given by that table.
Thanks for sharing, so Matt was spot on :cool:.
May 10, 2012 at 9:53 am
TimParker (5/10/2012)
May 10, 2012 at 9:51 am
HowardW (5/10/2012)
Divine Flame (5/10/2012)
HowardW (5/10/2012)
Depends on the reason for it. If the reason for preventing DML is to avoid long locks when another process is running, an after trigger doesn't...
May 10, 2012 at 6:50 am
TimParker (5/10/2012)
As far as I can tell, it is a complete good backup, according to...
May 10, 2012 at 6:43 am
HowardW (5/10/2012)
Depends on the reason for it. If the reason for preventing DML is to avoid long locks when another process is running, an after trigger doesn't help at all.
FYI,...
May 10, 2012 at 6:38 am
TimParker (5/10/2012)
May 10, 2012 at 6:31 am
TimParker (5/10/2012)
I just started a new job last week. I...
May 10, 2012 at 6:19 am
Kwisatz78 (5/10/2012)
May 10, 2012 at 5:39 am
Viewing 15 posts - 256 through 270 (of 644 total)