Viewing 15 posts - 16 through 30 (of 109 total)
It could be anything - from indexes to using the UPPER() function...
I'd start with removing the 'UPPER' function and see if it makes any big difference.
If not - look at...
October 15, 2009 at 9:43 am
It's important to remeber that ,mappings are available only to the session that created them. Thus, the actual account that is executing the code might not have any drive Z...
October 15, 2009 at 8:36 am
HI
You might wanna check Full Text Indexing in BOL, but I dout it can find HEX strings correctly...
If not - your only option (still better than Access) is to use...
October 15, 2009 at 8:31 am
Hi
The trick is to use inline query. Notice that I moved your SQL to CTE to allow for complex, yet coordinated, where clause...
;WITH MySampleCTE AS
(
Select
row_number() over(order by name)...
October 15, 2009 at 8:20 am
HI Jonest
Any suggestions will be appreciated!
What suggestions do you expect to hear from us?
October 15, 2009 at 8:12 am
Hi James
The migration process is devided into few steps, each requires its own decisions:
1. Migrate the dbase files 'as-is'. This is plain simple using SQL (not Express) management console, Microsoft...
October 8, 2009 at 3:54 pm
SELECT
c.value('FIELD[@_KEY="Name"][1]/@_VALUE', 'VARCHAR(100)') as Name,
c.value('FIELD[@_KEY="Age"][1]/@_VALUE', 'VARCHAR(100)') as Age,
c.value('FIELD[@_KEY="Address"][1]/@_VALUE', 'VARCHAR(100)') as Address
FROM @Xml.nodes('MYDATA') T(C)
October 8, 2009 at 3:41 pm
I always use the following practice:
execute SET DATEFORMAT YMD right before your insert or update statements so SQL doesn't get ambigous about it.
September 30, 2009 at 12:17 pm
Chuck Lucking (9/23/2009)
Looks like a typo. Take a close look at the error message you posted.Cannot open database "mastir" requested by the login
Did you mistype MASTER?
Chuck
I think that's what...
September 23, 2009 at 9:19 pm
If you look carefullt in the query plan, you'll notice that the BETWEEN directive is converted into 'X>=100 AND X<=200' pattern, so that's for optimizations.
As for performance, I sometimes...
September 23, 2009 at 3:46 pm
Hi Amit
I guess one of these switches will get you where you wanted. Espacially the last one:
-m error_level
Customizes the display of error messages. The message number, state, and error level...
September 23, 2009 at 3:41 pm
I bet you won't be sorry for that.
good luck and contact me if you need any help...
Tal
September 21, 2009 at 10:20 am
It's a SQL like log querying tool by Microsoft, originally developed for querying W3C log files, but has many capabilities, featuring CSV, TSV, FileSystem and many more input formats. The...
September 21, 2009 at 4:08 am
Microsoft LogParser does great job regarding varying commas inside CSV and type controlling what goes into SQL
September 20, 2009 at 1:36 pm
you got me on this one...
I guess that's because this is almost the only PROCEDURal code that is allowed to do anything in the server: create or drop objects, alter...
September 20, 2009 at 1:33 pm
Viewing 15 posts - 16 through 30 (of 109 total)