Viewing 15 posts - 271 through 285 (of 1,065 total)
SQL IP Address (Virtual Server Name): NONE - correct, no remote access without an IP address
SQL Network Name (Virtual Server Name): SQL IP Address - correct, the network name is...
November 18, 2009 at 1:36 am
You're thinking in Visual Basic (or similar) not TSQL... 🙂
if @TransCode='TR001'
SET @p1 = dbo.AddFltAmount(@p1,@Flt_Amount) --here where i am getting error
--this would also cause an error end if...
November 18, 2009 at 1:03 am
Just select the Months option, and set the "Every" to 12, i.e. run every 12 months.
November 17, 2009 at 6:11 am
When you upgraded, did you update the statistics after the upgrade completed?
Not sure about 2008, but I know this was required after upgrading from 2000 to 2005, and not doing...
November 16, 2009 at 1:31 am
I may be oversimplifying a bit (okay a lot) but after the backup has finished reading data it circles back to the log and looks for any transactions committed that...
November 13, 2009 at 1:56 pm
Can you explain in detail what you are trying to achieve?
I'm trying to fgure out why you would want them treated as a single column?
November 13, 2009 at 4:49 am
Just use a comma instead of a plus
CREATE INDEX IND_SEARCH ON TAB_HOCKEYTEAMS
(
COLUMN1,COLUMN2
)
November 13, 2009 at 3:44 am
As you can't stop your DBA's from viewing the data, then you may want to consider auditing what they do (using profiler). Then you can at least ask them why...
November 13, 2009 at 3:40 am
Can you explain exactly what you are doing, and exactly what you are seeing (and where)... e.g. if you are running the restore using TSQL, can you post the TSQL,...
November 13, 2009 at 1:09 am
No, the backup won't wait for DML actions to complete.
Assuming you're talking about full backups, your backup will reflect the state of the database at the end of the backup.
When...
November 13, 2009 at 12:57 am
mazzz (11/12/2009)
(he's a soccer goalkeeper famous for shouting a lot...
November 12, 2009 at 8:24 am
What type of replication are you talking about?
Transactional and merge replication don't necessarily use BCP (apart from the initial snapshot).
November 12, 2009 at 5:47 am
I assume you are seeing the "restoring" message on the restore dialog withing SSMS.
If so, how big is the database? Don't forget the first part of the restore will be...
November 12, 2009 at 1:43 am
A few possibilities:-
Deletes leaving a gap where the row was.
Updates that change the size of the row, forcing the page to split
Inserts into the table that rollback before being completed.
Part...
November 12, 2009 at 1:05 am
Using transactions, you will get locks no matter what isolation level you are using (you will also get locks with an individual statement even if it's not part of a...
November 11, 2009 at 5:52 am
Viewing 15 posts - 271 through 285 (of 1,065 total)