Viewing 15 posts - 1,351 through 1,365 (of 7,504 total)
I like the solution Gail handed over.
Especially because it lets you identify the bogus information easily using "WHERE HardwareNumber is NULL".
So, unless you really need this column to be...
June 17, 2012 at 11:55 pm
You're encountering one of the "little" mishaps known with msaccess db.
did you try something like this ?
Declare @mycounter int = 999999900
UPDATE tblAsset
SET HardwareNumber = @mycounter
, @mycounter +=...
June 17, 2012 at 9:36 am
Kick out ALL udfs you use and write the proper query to fetch the data you aim for.
Without a sqlplan, it is up to our imagination to figure out...
June 17, 2012 at 9:25 am
:blush: regarding HP, I can only tell you should upgrade practically all drivers before throwing it into production.
We learned that the hard way when we were forced to move...
June 15, 2012 at 7:59 am
Until now, the obvious question has not been raised :
Is your SQLInstance on the latest service pack ? How to obtain ...
Select Serverproperty('ProductVersion') as ProductVersion
...
June 15, 2012 at 5:46 am
vinu512 (6/14/2012)
I am really sorry to have posted in the wrong Section.
Johan, your solution of CDC...
June 15, 2012 at 12:08 am
- it's all in your db log, but it may take some effort to get it out ... or a vendor tool.
- Is this a one time operation or is...
June 14, 2012 at 7:10 am
Did you try using it with level indication ?
;
with cte ( EventID, EventType, EventName, ParentEventType, ParentEventName )
...
June 11, 2012 at 1:42 am
Nice article, Robert. 😎
Nice enhancement of the GUI. I didn't pay much attention to it, because I assemble my scripts using a script generation script 😉
June 11, 2012 at 1:09 am
here are some other refs ( Gail showed you _the_ one 😉 )
- see topic "Restoring a Filegroup From a Full Backup" at http://sqlserverpedia.com/wiki/Restoring_File/Filegroup_Backups
- Of course there is always Books...
June 10, 2012 at 11:57 am
I would start making the current log-backup of that database !
Then it should be able to get you to the current state, starting from your previous full backup.
If you can,...
June 9, 2012 at 12:49 pm
1) there is no column store index with SQL2005 !
2) SQL2012 column store indexes turn your table in read-only mode !
June 6, 2012 at 11:45 pm
Did you try to find the issue in the data using the isdate function ?
select Datecol, ISDATE(Datecol)
from yourtable
where ISDATE(Datecol) = 0
June 6, 2012 at 11:42 pm
I see in your example triggers all on table_1, you're only updating table table_2 in the first one.
For that one, I would use
...UPDATE cs
...
June 3, 2012 at 4:03 am
Viewing 15 posts - 1,351 through 1,365 (of 7,504 total)