Viewing 15 posts - 10,021 through 10,035 (of 13,469 total)
glad this was helpful for you , Leena; I've never found a practical use for it so far, but it is good to know; of course there is always more...
February 3, 2010 at 9:09 am
eric could it have to do with disk permissions?
for example, on my win7 laptop, i cannot write to c:\mydb.sdf, but i have no problem writing to C:\Program Files\Microsoft SQL...
February 3, 2010 at 8:45 am
would that mean you have to add a dml trace to the server so you can capture the user/application name/hostname and other information, i guess to complement the changes CDC...
February 3, 2010 at 8:34 am
no, sorry DR; a function cannot call a stored procedure, only extended stored procedures;
the reason is a function is not allowed to affect objects, and since a stored procedure could...
February 3, 2010 at 7:50 am
i think you'll have to use MAX(*) functions and a group by statement:
SELECT
Dt ,
MAX(Wire) AS Wire,
MAX(Convergys) As Convergys
FROM YourTable
Group By Dt
February 2, 2010 at 12:14 pm
malware? it's just my crappy dev site that holds all my ugly screenshots and script examples; i don't see anything wrong, can you pm me whatever you are seeing?
February 2, 2010 at 11:44 am
like Wayne said, there should be an event for OnFormClose you cna use to prevent the form from being destroyed if a process has not completed; also, you should also...
February 2, 2010 at 11:22 am
Gaby if you are inserting single rows at a time, even if there are lots of them per second, scop-identity() should work fine.
if you have a single statement that is...
February 2, 2010 at 11:07 am
look at the error you are getting; it should be very obvious;
if i used your function for a table named "Customers" and a WHERE statement that was "CustomerName LIKE 'c%'
what...
February 2, 2010 at 10:04 am
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...
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...
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.
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...
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...
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...
February 1, 2010 at 10:44 pm
Viewing 15 posts - 10,021 through 10,035 (of 13,469 total)