Viewing 15 posts - 4,576 through 4,590 (of 11,678 total)
dwain.c (10/9/2013)
http://www.sqlservercentral.com/Forums/FindPost1503017.aspx
I used to teach 2 methods to swap A and B in entry level university FORTRAN course (too)...
October 10, 2013 at 12:48 am
ervindetorres (10/9/2013)
What happen when the certification retired?
It means you can't get the certification anymore.
Instead you can achieve the SQL Server 2012 certifications.
I believe you can still do the 2008 exams...
October 10, 2013 at 12:46 am
Just like you would against SQL Server. DB2 also supports CTE expressions.
October 9, 2013 at 2:41 pm
etl.laptop (10/9/2013)
Why doesn't Red Gate make it ? They are pretty good at the SQL server addons.
I'll let them know 🙂
October 9, 2013 at 12:11 pm
vineet_dubey1975 (10/9/2013)
Thanx a lot ! Let me try this on the Production DB Set.
Remember that if you execute something on production, you're responsible for it. If something goes wrong,...
October 9, 2013 at 6:41 am
hoseam (10/9/2013)
Yes there is actually nested query:
BEGIN TRANSACTION [new_Account]
INSERT CUSTOMER(NAME, CITY, STATE)
VALUES ('Izetta','Greenville', 'AL')
IF EXISTS (SELECT * FROM CUSTOMER WHERE NAME = 'Izetta')
BEGIN
BEGIN TRANSACTION
INSERT BALANCES(AVERAGE_BAL, CURRENT_BAL)
VALUES(1250.76, 1431.26)
END
ELSE ROLLBACK TRANSACTION
COMMIT
BEGIN...
October 9, 2013 at 6:08 am
Here you go:
SELECT TOP 25
RowNumber= number+1
,DateField= CONVERT(DATE,DATEADD(dd,number,'2009-11-09'))
,DateGroup= (number/4)+1
FROM master.dbo.spt_values
WHERE type = 'P';
I used the system table spt_values to get a list of numbers, but there are other methods to...
October 9, 2013 at 5:47 am
SSRS will not display the text. It expects a dataset with the predefined columns.
Since the resultset doesn't contain any rows, it will show an empty report.
October 9, 2013 at 5:00 am
Are you developing on Windows XP?
October 9, 2013 at 3:33 am
Maybe the HyperV improvements?
October 9, 2013 at 3:24 am
Using SSIS or BCP you won't achieve your requirement.
Either you code it with .NET, or you use a macro to do the formatting.
Another option is to create a report in...
October 9, 2013 at 3:21 am
$w@t (10/9/2013)
after login with taht user i can see systemtables,system stored procedures,another users(even i can modify it) under particular database...but i want to restrict that..
You'll need to check which permissions...
October 9, 2013 at 2:55 am
harsimranjeetsinghwasson (10/9/2013)
SSIS
OK. Next time use the SSIS forums 😉
October 9, 2013 at 1:52 am
Viewing 15 posts - 4,576 through 4,590 (of 11,678 total)