Viewing 15 posts - 1,681 through 1,695 (of 1,957 total)
varunkum (12/21/2010)
Gianluca Sartori (12/21/2010)
Last run date is by definition the date the report runs, AKA GETDATE().
Last run date is when the report was run lastly. Suppose if yesterday i opened...
December 21, 2010 at 12:11 pm
varunkum (12/21/2010)
select (if (DESCRIPTION= 'Stop save') then ('gddo'); else ('turr'); end if;) as depfrom CIRC.TAG
missing right parenthesis' error message. What's the mistake.
You can't use "if" in a SELECT
select CASE WHEN...
December 21, 2010 at 12:09 pm
Sorry, I just noticed that I basically repeated what Lamprey13 had already said :doze:
My apologies to all...
December 21, 2010 at 8:12 am
Please check to see if a TRIGGER has been applied to the table - it seems likely.
December 21, 2010 at 6:06 am
I have to agree that this is a PITA, but if you are truly stuck with it and don't want to give up just because it's hard....then...
declare @testFieldType table(fieldId int,...
December 21, 2010 at 6:04 am
I also don't care that much about portability - whenever I write a query it is on SQL Server and AFAIK there is no plan to remove GETDATE().
I also don't...
December 21, 2010 at 4:56 am
+1 for filtering in the Object Explorer of SSMS
+1 for partition functions
+1 for execution plans (both graphical and xml)
New ones - not mentioned so far.
XQUERY - Processing xml has...
December 17, 2010 at 7:05 am
WayneS (12/16/2010)
IMO, I see the "ordering being out of whack" for two reasons:1. An "ORDER BY" wasn't specified (duh), and
2. Parallelism (dual-core laptop here).
Agreed - I was ignoring the lack...
December 16, 2010 at 5:48 pm
WayneS (12/16/2010)
I've been using VMWare for years (and am happy with it), but to install a 64-bit Windows 7 and...
December 16, 2010 at 5:23 pm
WayneS (12/16/2010)
IF OBJECT_ID('tempdb..#Test') IS NOT NULL DROP TABLE #Test;CREATE TABLE #Test (RowID INT PRIMARY KEY CLUSTERED);
;WITH
TENS (N) AS (SELECT 0 UNION ALL SELECT 0 UNION...
December 16, 2010 at 5:01 pm
If you are a sysadmin, sql will ignore your request to set a default schema on your login and use "dbo"...does that sound like what is happening?
December 16, 2010 at 4:23 pm
I think "That's mighty fine code, but let me show you how to do it better..." should be one.
December 15, 2010 at 5:09 pm
Is strAllRows a typo?
December 15, 2010 at 5:07 pm
It's still a bit of a strange request as your backup table would need to change to accommodate these new columns wouldn't it?
And how often are you planning on...
December 12, 2010 at 3:48 pm
That is a strange request - if you don't want to manually enter all the column names, just open the object explorer, find your table and drag the "Columns"...
December 12, 2010 at 8:19 am
Viewing 15 posts - 1,681 through 1,695 (of 1,957 total)