Viewing 15 posts - 10,021 through 10,035 (of 13,460 total)
ricky i'm just confirming what you are seeing; for me so far, if the try catch is in a transaction or using a transaction, i get the same failure; I...
Lowell
February 2, 2010 at 8:28 am
In SQL you have to use dynamic sql and the EXEC(EXECUTE) statement.
Oracle is the same, but you would use EXECUTE IMMEDIATE,
ie execute immediate 'drop table TEMPTBL';
it...
Lowell
February 2, 2010 at 8:11 am
raju you are very welcome; you should get some other great feedback as other posters get their coffee and hit this thread as well.
Lowell
February 2, 2010 at 5:33 am
ahh gotcha Satish; a zip+4 database is a little different. i think the issue becomes "that's my proprietary data" that if someone cloned, they could build their own app for...
Lowell
February 2, 2010 at 5:32 am
not enough info i think Satish; still a lot of variables out there;
your database is 30 gig, but if i were a client of yours, how much of that data...
Lowell
February 1, 2010 at 11:06 pm
raju i can only tell you my experiences and the way we do things at my shop; you can review them and see what you like, since there's no real...
Lowell
February 1, 2010 at 10:44 pm
oracle is double pipe; SQL Server uses the plus sign, and will only concat the char datatypse(char/varchar/nchar/nvarchar); so of you need to concat an integer to the string , you...
Lowell
February 1, 2010 at 5:58 pm
Joel you are on the right track; you'll need to join against another table, but it doesn't necessarily need to be a real calendar table. you can use a Tally...
Lowell
February 1, 2010 at 2:42 pm
change the backup command so instead of NOINIT it says INIT:
NOINIT=append to existing
INIT=replace if exists:
USE MASTER
BACKUP DATABASE [MSPHXX]
TO DISK = N'K:\MSPHXX_ARC.bak'
WITH NOFORMAT, INIT, NAME = N'MSPHXX_ARC',
SKIP, NOREWIND,...
Lowell
February 1, 2010 at 12:39 pm
itskumar2004 (2/1/2010)
i know the syntax dateadd(month,3,datefield) which will add 3 months and you can only see one month..
but i want a syntax to see all next 3 months of...
Lowell
February 1, 2010 at 11:57 am
ugg; i didn't even look at the question, just tried to create the data in a ready to consume format;
help us help you! in the future, try to give everyone...
Lowell
February 1, 2010 at 11:51 am
Steve it sounds like you could prevent it to me.
If you can detect data that does not belong AFTER the fact, you could add filters in the application or in...
Lowell
February 1, 2010 at 11:04 am
mark i believe you can also change the function to return a table value function, and use CROSS APPLY to apply it against your data for a big performance gain.
Lynn...
Lowell
February 1, 2010 at 9:49 am
no the virtual tables are stiull there, but in an INSTEAD OF trigger, it's up to you to do something with the results; if you sent an did some buiz...
Lowell
February 1, 2010 at 9:35 am
carl you do not need the where clause at all inside a trigger;
The trigger there are two virtual tables named INSERTED and DELETED;they have a mirror of the columns in...
Lowell
February 1, 2010 at 9:16 am
Viewing 15 posts - 10,021 through 10,035 (of 13,460 total)